我正在使用Sublime Text Git插件(使用ST3),但我不需要或想要它添加到状态栏的内容(位于UI的底部)。我似乎无法拒绝。在Git.sublime-settings中,我将statusbar_branch
和statusbar_status
都设置为false,这已删除部分但不是全部插件的状态栏输出。我仍然得到“比较:HEAD”。有没有办法禁用它?
答案 0 :(得分:9)
状态栏中的“与HEAD比较”消息实际上不是由Git插件生成的,而是由GitGutter生成的。
// Determines whether GitGutter will show informations in the status bar
// Set "none" to hide these informations
// Set "default" to show in the status bar what you are comparing
// against, how many lines have been inserted or modified and how many regions
// have been deleted.
// Set "all" to also show on what branch you are
"show_status": "default",
默认配置是在状态栏中显示来自GitGutter的信息。
如果您想要将其停用,只需将show_status
设置为none
,如评论所示。