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 brace-skipping behavior #12

Closed tamzinblake closed 13 years ago

tamzinblake commented 13 years ago

it does:

var foo = { prop: "{baz"
          }
          , bar

should be:

var foo = { prop: "{baz"
          }
  , bar

js--backward-sexp needs to be better.

tamzinblake commented 13 years ago

Closed by commit a332025