Sublime Text 3 - Plugin Profiles

I am currently using Sublime Text 3 for programming in Python, Java, C ++ and HTML. So, for each language I have a different set of plugins. I would like to know if there is a way to change the β€œprofiles”, with each profile containing plugins of the corresponding language. My computer is not so strong, so it starts to freeze if I have too many active plugins. Therefore, when one profile is running, all other plugins must be disabled.

TL DR: Is there a way to change β€œprofiles” containing a different set of plugins in Sublime Text?

+5
source share
2 answers

The easiest way to do this on Windows is to have several portable installations, each of which is configured for your programming language and a set of plugins of your choice. Then you can configure several icons on the desktop / taskbar / start menu / independently of each other, each of which indicates a different installation. This way, you don’t have to bother writing batch files to rename.

Alternatively, you can just spring for a new computer :)

+2
source

On Windows 10, if you delete this folder -> C: \ Users \ USER \ AppData \ Roaming \ Sublime Text 3

then the exalted text will return to its original state by default. Perhaps if you configure a batch file to store different versions of this folder, for example: "

"./Sublime Text 3_Java" or

"./Sublime Text 3_Python" or

"./Sublime Text 3_C ++"

and then when you want to work with java, there is a batch file to rename "./Sublime Text 3_Java" to "./Sublime Text 3" and restart the sublime. If you really want to use fantastic symbolic symbolism to represent "./Sublime Text 3", then the batch file should modify (or delete and recreate) the symbolic link pointing to.

0
source

Source: https://habr.com/ru/post/1213193/


All Articles