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 handling of multiline comments #6

Closed tamzinblake closed 13 years ago

tamzinblake commented 13 years ago

Since we're using the rather lame js--backward-sexp, multiline comments are not handled well. Example:

var foo = { bar : baz /*multiline
                        comment*/
  , baz: bim
          }

Should be:

var foo = { bar : baz /*multiline
                        comment*/
          , baz: bim
          }
tamzinblake commented 13 years ago

closed the issue in 765149d