vim-es6 icon indicating copy to clipboard operation
vim-es6 copied to clipboard

closing paren on newline ruins indent

Open createthis opened this issue 7 years ago • 0 comments

Example:

let foo = (( 1+
            2)
          )
          let bar = 3;

I would expect this to be:

let foo = (( 1+
            2)
)
let bar = 3;

or this (possible configurable):

let foo = (( 1+
  2)
)
let bar = 3;

createthis avatar Jan 08 '18 19:01 createthis