ST2-Color-Console icon indicating copy to clipboard operation
ST2-Color-Console copied to clipboard

Provides a .tmLanguage to use syntax highlighting in Sublime Text 2's console

Results 3 ST2-Color-Console issues
Sort by recently updated
recently updated
newest added

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...