How do I remove Sublime Merge integration from sublime text

1.3k views Asked by At

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.

sublime merge commands

Is there a way to remove them completly from sublime text command panel?

2

There are 2 answers

4
OdatNurd On BEST ANSWER

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.

0
joseramonc On

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