从 Sublime Text 3 中删除某些语言

Gho*_*ool 2 windows windows-7 sublimetext3

这是我在超级用户上提出的问题的重复。但这里可能会得到答案:

在 Sublime text 2 中这很容易,但是如何删除(或限制数量)右下角可访问的代码语法文件。

崇高的语言

例如,在备份但未使用时将 Pascal 放入文件夹中。

Kei*_*all 5

您可以将包添加到您的ignored_packages用户首选项中,Sublime Text 将忽略这些包中的所有内容 - 包括语法定义。无需进行任何文件夹操作或备份。

例如,要从列表中删除 Pascal 语法:

// List any packages to ignore here. When removing entries from this list,
// a restart may be required if the package contains plugins.
"ignored_packages": ["Vintage", "Pascal"]
Run Code Online (Sandbox Code Playgroud)