Reputation: 1931
I simply don't want them, prefer the git command line, but they are added to my commands as if they were installed, even if I never installed sublime merge.
Is there a way to remove them completly from sublime text command panel?
Upvotes: 2
Views: 1584
Reputation: 1931
Starting with sublime 4 build 4121 we can now just set:
"sublime_merge_path": null
This will remove sublime merge integration, while preserving general git support
Upvotes: 1
Reputation: 22831
The setting show_git_status
controls this:
// Shows git repository information next to files in sidebar and in
// the status bar. Sublime Text has to be restarted for this to take
// effect.
"show_git_status": true,
It defaults to being turned on, but setting it to false
and restarting Sublime will disable the general git support, which also stops the command palette entries from appearing, as well as the context menu entries.
Upvotes: 5