derekchiang / Sublime-CoffeeScript-Formatter

A sublime plugin for formatting CoffeeScript
19 stars 1 forks source link

Redundant space for self invoking functions #7

Open jsliang opened 10 years ago

jsliang commented 10 years ago

Thank you for this CoffeeScript Formatter plugin! :)

Report a little issue regarding redundant space for self invoking functions.

Before:

(->
    # function body
)()

After:

(->
    # function body
) ()

The space between ) and () is causing syntax error on compile.