vim-es6
vim-es6 copied to clipboard
bracket on new line indents incorrectly
Example:
if (1)
{
echo 'foo';
}
I expect this to indent as:
if (1)
{
echo 'foo';
}
It appears to handle the bracket inline just fine though:
if (1) {
echo 'foo';
}