Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show active plugins in Sublime Text 2 and disable them

I just installed sublime text 2 and was overwhelmed by the php plugins that I installed ALL of them. Now auto-complete is crazy, a million unnecessary suggestions and I dont remember which plugin does what or which ones I installed. Is there a way to see all active plugins for a particular file so I can disable some?

like image 623
frazras Avatar asked Feb 01 '13 14:02

frazras


People also ask

How to disable plugins in Sublime Text?

You can't disable packages, but you can remove them. Click on Preferences > Package Control and enter Package Control: Remove Package , then select the package.

How do I use plugins in Sublime Text?

Download and install Package Control Go to SublimeText – Preferences – Package Control (MAC) or Preferences – Package Control (PC) Choose “Install Package” from the list of options. Find the name of the package you wish to install and select it.

Does Sublime Text have plugins?

You're going to have to turn to plugins (also known as packages) for your Sublime Text. It's worth noting that our list of our favorite Sublime Text plugins is fairly versatile and is (mostly) random in order.


2 Answers

I'm not sure about the active plugin on a file part, but you can quickly go in and remove plugins that are installed by opening the Command Pallete (Cmd-Shift-P on Mac) and typing remove if you have Package Control installed.

You will see Package Control: Remove Package**

Once the list of installed plugins shows up you can click these and remove them and then test out your code.

You can do the reverse and quickly re-install the packages if something you needed was missing.

You probably already knew this so I am not sure that this will be helpful or not.

BTW: Sublime Text 3 Beta just came out and is available to licensed users. I have not done much with it yet, but it loads almost instantly.

like image 160
Jordan Avatar answered Oct 03 '22 02:10

Jordan


There's no need to remove packages as packages can be simply disabled by using Package Control: Disable Package option in the Command Palette.

like image 30
Rakesh Avatar answered Oct 03 '22 03:10

Rakesh