ST2-Color-Console
ST2-Color-Console copied to clipboard
Provides a .tmLanguage to use syntax highlighting in Sublime Text 2's console
I know others have mentioned this, but there's actually a few issues: 1) Installation in Ubuntu requires the folder to be renamed to ColorConsole (different name in the zip). 2)...
After cloning into Packages/ folder i find this line in Widget.sublime-settings ``` javascript "syntax": "/Users/daniel/Library/Application Support/Sublime Text 2/Packages/ColorConsole/Console.tmLanguage", ``` Which should be ``` javascript "syntax": "/Users/daniel/Library/Application Support/Sublime Text 2/Packages/ST2-Color-Console/Console.tmLanguage", ```
os.path.join uses a backslash in windows, which results in an incorrrect string in Widget.sublime-settings, because the backslashes turn into escapes when quoted. Quick fix: replace backslashes with double backslashes. In...