Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 273
joseramonc Avatar asked Jan 30 '26 10:01

joseramonc


1 Answers

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.

like image 156
OdatNurd Avatar answered Feb 01 '26 21:02

OdatNurd