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 indentation of operators in object literals #21

Closed tamzinblake closed 13 years ago

tamzinblake commented 13 years ago

it does:

  a = { b : c + d
      + e
      }

should be:

  a = { b : c + d
              + e
      }