如何从 sublime text 中删除 Sublime Merge 集成
How do I remove Sublime Merge integration from sublime text
我根本不想要它们,更喜欢 git 命令行,但它们被添加到我的命令中,就像它们已安装一样,即使我从未安装过 sublime merge。
有没有办法从 sublime text 命令面板中完全删除它们?
设置show_git_status
控制这个:
// 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,
它默认打开,但将其设置为 false
并重新启动 Sublime 将禁用一般 git 支持,这也会停止显示命令面板条目以及上下文菜单项。
从 sublime 4 build 4121 开始,我们现在可以设置:
"sublime_merge_path": null
这将删除 sublime 合并集成,同时保留一般 git 支持
我根本不想要它们,更喜欢 git 命令行,但它们被添加到我的命令中,就像它们已安装一样,即使我从未安装过 sublime merge。
有没有办法从 sublime text 命令面板中完全删除它们?
设置show_git_status
控制这个:
// 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,
它默认打开,但将其设置为 false
并重新启动 Sublime 将禁用一般 git 支持,这也会停止显示命令面板条目以及上下文菜单项。
从 sublime 4 build 4121 开始,我们现在可以设置:
"sublime_merge_path": null
这将删除 sublime 合并集成,同时保留一般 git 支持