vim-es6
vim-es6 copied to clipboard
closing paren on newline ruins indent
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;