Sublime Forum

Syntax Manager for Sublime Text 2/3

#1

It helps in applying settings to muliple syntaxes and applying syntax to given extensions.

I don’t understand why ST makes it so difficult to toogle the same setting across several different syntaxes. For example, if someone wants to enable auto_match_enabled for python and c. He has to create two files Packages/User/Python.sublime-settings and Packages/User/C.sublime-settings. Then add, in each of the files,

    "auto_match_enabled": true

This plugin makes it easier by the considering following setting

"syntaxmgr_settings": { "scopes": "source.c", "source.python"], "settings": { "auto_match_enabled" : true } } ]
github.com/randy3k/SyntaxMgr

0 Likes

#2

This looks very interesting! I just switched over some of my annoying settings . . . Setting a tab_size of 2 for HTML, CSS, LESS and SCSS requires four identical files!

Is there a performance hit associated with using the plugin as opposed to default setup?

I like how you’ve had the arrogance to put the menu item outside of the Package Settings submenu :smiley:

Alex

0 Likes

#3

As long as you don’t have a super long list, it won’t slow down your computer substantially.

Hah, it is because it is not only for a package, it is for pacakges.

0 Likes