joseramonc
joseramonc

Reputation: 1921

How do I remove Sublime Merge integration from sublime text

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?

Upvotes: 2

Views: 1568

Answers (2)

joseramonc
joseramonc

Reputation: 1921

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

OdatNurd
OdatNurd

Reputation: 22791

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

Related Questions