Sublime Text: disable all packages

后端 未结 2 1454
盖世英雄少女心
盖世英雄少女心 2021-02-05 02:16

I\'m using Sublime Text 3083.

When I load a file with several thousand lines and try to edit it, it gets amazingly un-responsive to the point that adding/removing even o

相关标签:
2条回答
  • 2021-02-05 02:41

    The best thing I can think 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 the listed packages there and restart ST3. Definitely make that copy first in case it screws up.


    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.

    0 讨论(0)
  • 2021-02-05 02:43

    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.

    0 讨论(0)
提交回复
热议问题