Open
Description
Context:
Sublime Text 3 build 3083, Mac OS X 10.9.5
- Install
TypeScript-Sublime-Plugin
via Package Control or source - Open up a TypeScript file, ensure that TypeScript is the active syntax
- Open
TypeScript.sublime-settings
by navigating the menu barSublime Text
->Preferences
->Settings - More
->Syntax Specific - User
- Insert the following:
{ "typescript_auto_format": false }
- Restart ST3
- Open TypeScript file, type
var x=1
- Type
;
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.