sublime-imba icon indicating copy to clipboard operation
sublime-imba copied to clipboard

Sublime plugin for Imba

Results 5 sublime-imba issues
Sort by recently updated
recently updated
newest added

Whatever color scheme I use it seems `sublime-imba` always chooses the `imba` color scheme. I imagine this is causing it: `"color_scheme": "Packages/Imba/Imba.tmTheme",` https://github.com/somebee/sublime-imba/blob/master/Imba.sublime-settings#L12 It can be solved by going to...

Unless cursor is within a string, the `|` should always appear in pairs so that it behaves just like a string. EG: `'` always triggers `''` with the cursor in...

Like all other/majority of syntax highlighters (PHP, JS, Coffee, Erlang, etc), pressing `return` while within a commented line will create a new, commented line. To create a new line free...

Just like single & double quotes, wrap highlighted text with ` rather than replacing the text. ``` highlighted + ' = 'highlighted' highlighted + " = "highlighted" highlighted + `...