tamzinblake / js3-mode

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

Incorrect indent with comma first + require #32

Closed pigmej closed 12 years ago

pigmej commented 12 years ago

It indents like:

var x = require("./test/test").something
               , y = require('./test2')

But should indent like

var x = require("./test/test").something
  , y = require('./test2')

(i hope that this time github will not damage the formatting)