Is there any way to stop using Sublime Text Git plugin vocals with status bar?

I use the Sublime Text Git plugin (with ST3), but I donโ€™t need or do not need the material that it adds to the status bar (at the bottom of the user interface). Although I canโ€™t do it. In Git.sublime-settings, I set both statusbar_branch and statusbar_status to false, which deleted some, but not all, of the plugin's status bar lines. I am still getting Comparison vs.: HEAD. Is there any way to disable this too?

+5
source share
1 answer

The Comparison with HEAD message in the status bar is not actually generated by the Git plugin, but by 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", 

The default configuration is to display information from GitGutter in the status bar.

If you want to disable it, just set show_status to none , as indicated by the comments.

+6
source

Source: https://habr.com/ru/post/1215756/


All Articles