├── .gitignore ├── Commands ├── Align Assignments.tmCommand ├── CoffeeScript.sublime-build ├── Compile and Display JS.tmCommand ├── Insert Heredoc comment.tmCommand ├── Insert Heredoc triple double quotes.tmCommand ├── Insert Heredoc triple single quotes.tmCommand ├── New Function.tmCommand ├── Run selected text.tmCommand └── Run.tmCommand ├── LICENSE ├── Preferences ├── CoffeeScript.tmPreferences ├── Disable Indent Corrections.tmPreferences ├── Indent.tmPreferences ├── Symbol List Method 2.tmPreferences └── Symbol List Method.tmPreferences ├── README.markdown ├── Snippets ├── Array comprehension.tmSnippet ├── Bound Function.tmSnippet ├── Class.tmSnippet ├── Else if.tmSnippet ├── Function.tmSnippet ├── If __ Else.tmSnippet ├── If.tmSnippet ├── Interpolated Code.tmSnippet ├── Object comprehension.tmSnippet ├── Range comprehension (exclusive).tmSnippet ├── Range comprehension (inclusive).tmSnippet ├── Raw javascript.tmSnippet ├── Switch.tmSnippet ├── Ternary If.tmSnippet ├── Try __ Catch.tmSnippet ├── Unless.tmSnippet ├── h1.tmSnippet ├── h2.tmSnippet ├── h3.tmSnippet ├── log.tmSnippet └── require.tmSnippet ├── Syntaxes ├── CoffeeScript (Literate).tmLanguage └── CoffeeScript.tmLanguage └── info.plist /.gitignore: -------------------------------------------------------------------------------- 1 | *.cache -------------------------------------------------------------------------------- /Commands/Align Assignments.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Align Assignments.tmCommand -------------------------------------------------------------------------------- /Commands/CoffeeScript.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/CoffeeScript.sublime-build -------------------------------------------------------------------------------- /Commands/Compile and Display JS.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Compile and Display JS.tmCommand -------------------------------------------------------------------------------- /Commands/Insert Heredoc comment.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Insert Heredoc comment.tmCommand -------------------------------------------------------------------------------- /Commands/Insert Heredoc triple double quotes.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Insert Heredoc triple double quotes.tmCommand -------------------------------------------------------------------------------- /Commands/Insert Heredoc triple single quotes.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Insert Heredoc triple single quotes.tmCommand -------------------------------------------------------------------------------- /Commands/New Function.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/New Function.tmCommand -------------------------------------------------------------------------------- /Commands/Run selected text.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Run selected text.tmCommand -------------------------------------------------------------------------------- /Commands/Run.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Commands/Run.tmCommand -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Preferences/CoffeeScript.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Preferences/CoffeeScript.tmPreferences -------------------------------------------------------------------------------- /Preferences/Disable Indent Corrections.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Preferences/Disable Indent Corrections.tmPreferences -------------------------------------------------------------------------------- /Preferences/Indent.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Preferences/Indent.tmPreferences -------------------------------------------------------------------------------- /Preferences/Symbol List Method 2.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Preferences/Symbol List Method 2.tmPreferences -------------------------------------------------------------------------------- /Preferences/Symbol List Method.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Preferences/Symbol List Method.tmPreferences -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/README.markdown -------------------------------------------------------------------------------- /Snippets/Array comprehension.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Array comprehension.tmSnippet -------------------------------------------------------------------------------- /Snippets/Bound Function.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Bound Function.tmSnippet -------------------------------------------------------------------------------- /Snippets/Class.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Class.tmSnippet -------------------------------------------------------------------------------- /Snippets/Else if.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Else if.tmSnippet -------------------------------------------------------------------------------- /Snippets/Function.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Function.tmSnippet -------------------------------------------------------------------------------- /Snippets/If __ Else.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/If __ Else.tmSnippet -------------------------------------------------------------------------------- /Snippets/If.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/If.tmSnippet -------------------------------------------------------------------------------- /Snippets/Interpolated Code.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Interpolated Code.tmSnippet -------------------------------------------------------------------------------- /Snippets/Object comprehension.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Object comprehension.tmSnippet -------------------------------------------------------------------------------- /Snippets/Range comprehension (exclusive).tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Range comprehension (exclusive).tmSnippet -------------------------------------------------------------------------------- /Snippets/Range comprehension (inclusive).tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Range comprehension (inclusive).tmSnippet -------------------------------------------------------------------------------- /Snippets/Raw javascript.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Raw javascript.tmSnippet -------------------------------------------------------------------------------- /Snippets/Switch.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Switch.tmSnippet -------------------------------------------------------------------------------- /Snippets/Ternary If.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Ternary If.tmSnippet -------------------------------------------------------------------------------- /Snippets/Try __ Catch.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Try __ Catch.tmSnippet -------------------------------------------------------------------------------- /Snippets/Unless.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/Unless.tmSnippet -------------------------------------------------------------------------------- /Snippets/h1.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/h1.tmSnippet -------------------------------------------------------------------------------- /Snippets/h2.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/h2.tmSnippet -------------------------------------------------------------------------------- /Snippets/h3.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/h3.tmSnippet -------------------------------------------------------------------------------- /Snippets/log.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/log.tmSnippet -------------------------------------------------------------------------------- /Snippets/require.tmSnippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Snippets/require.tmSnippet -------------------------------------------------------------------------------- /Syntaxes/CoffeeScript (Literate).tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Syntaxes/CoffeeScript (Literate).tmLanguage -------------------------------------------------------------------------------- /Syntaxes/CoffeeScript.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/Syntaxes/CoffeeScript.tmLanguage -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jashkenas/coffee-script-tmbundle/HEAD/info.plist --------------------------------------------------------------------------------