sublime-better-coffeescript icon indicating copy to clipboard operation
sublime-better-coffeescript copied to clipboard

Highlight function invoke

Open gildorwang opened this issue 12 years ago • 0 comments

CoffeeScript makes it easy to chain function invokes by using spaces instead of parentheses. However it sometimes produces code like

action = (token, i) ->
  @tokens.splice i, 0, @generate 'CALL_END', ')', token[2]

which took me a second to realize there are actually two function invokes on the 2nd line. One is splice; the other is generate. It would be much easier to read if we can have all function invokes highlighted.

gildorwang avatar Nov 29 '13 06:11 gildorwang