Sublime Text: disable all packages

筅森魡賤 提交于 2019-12-03 01:10:09

Best thing I can thing of is to keep a list of the package names that you can copy and paste into your preferences file in the "ignored packages" section. If you have any sort of linter or code intel that might be the culprit if it's several thousand lines.

"ignored_packages":
[
    "SublimeCodeIntel",
    "Vintage"
]

Another thing to try would be to just make a copy of your Packages/Users/Package Control.sublime-settings file, then edit the original and delete all of the listed packages there and restart ST3. Definitely make that copy first in case it screws up.


EDIT Gabriel reports he ultimately solved the issue by copying the list of installed packages out of the Packages/Users/Package Control.sublime-settings file and paste them into the ignored_packages section of his preferences file.

Packages can be simply disabled as follows

  1. Press Ctrl+Shift+P to open Command Palette
  2. Type disable, select Package Control: Disable Package
  3. This will give the list of all the Installed Packages, click on the one which you want to disable.

That's it. And you can enable disabled package anytime, just type enable in step:2.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!