tamzinblake / js3-mode

A chimeric fork of js2-mode and js-mode
GNU General Public License v3.0
181 stars 13 forks source link

+ and , don't play well together #33

Closed tamzinblake closed 12 years ago

tamzinblake commented 12 years ago

current:

  foo( a
     + b
  , c
     + d

should be:

  foo( a
     + b
     , c
     + d
tamzinblake commented 12 years ago

Probably can be fixed by making , line up with + at the beginning of lines. Not sure if this would cause other problems yet.