显示 git 行光标上文件内提交作者和文本的 Sublime Text 包
Sublime Text package that shows git commit author and text inside the file on line cursor
我在 Sublime Text 3 中看到了一种在将光标放在代码行上后显示 git 作者提交和文本的方法(下面的屏幕截图)。我需要安装哪个包?
该功能由 GitGutter 包提供;特别是它由 show_line_annotation
设置控制:
// (ST3, Build 3124+ only)
// Display a phantom text at the end of the active line with information
// about who changed it using the output of `git blame`.
// "auto" -- show line annotation if word wrap is disabled (default)
// "true" -- always show line annotation
// "false" -- never show line annotation
"show_line_annotation": "auto",
上面显示的是默认值,只要关闭自动换行就可以启用它。如果您使用自动换行,则需要在您的自定义设置中将设置修改为 true
才能看到它的实际效果。
我在 Sublime Text 3 中看到了一种在将光标放在代码行上后显示 git 作者提交和文本的方法(下面的屏幕截图)。我需要安装哪个包?
该功能由 GitGutter 包提供;特别是它由 show_line_annotation
设置控制:
// (ST3, Build 3124+ only)
// Display a phantom text at the end of the active line with information
// about who changed it using the output of `git blame`.
// "auto" -- show line annotation if word wrap is disabled (default)
// "true" -- always show line annotation
// "false" -- never show line annotation
"show_line_annotation": "auto",
上面显示的是默认值,只要关闭自动换行就可以启用它。如果您使用自动换行,则需要在您的自定义设置中将设置修改为 true
才能看到它的实际效果。