Open chbrown opened 9 years ago
@chbrown As a work around, you can set your settings in Package\User\Preferences.sublime-settings
file (Menu
-> Preferences
-> Settings - User
).
Oh, cool, thanks @hoanhtien. Not the optimal solution, but certainly better than setting it in the package's Preferences.sublime-settings
.
so why not move settings to a separate setting file just like other plugins did to keep Preferences.sublime-settings
clearly :)
Context:
Sublime Text 3 build 3083, Mac OS X 10.9.5
TypeScript-Sublime-Plugin
via Package Control or sourceTypeScript.sublime-settings
by navigating the menu barSublime Text
->Preferences
->Settings - More
->Syntax Specific - User
{ "typescript_auto_format": false }
var x=1
;
Expected behavior: I end up with
var x=1;
Actual behavior: I end up with
var x = 1;
I shouldn't have to touch the package's own
Preferences.sublime-settings
file. That file gets overwritten on subsequent installs, so it's not a good place for my personal user preferences.