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

bracket on new line indents incorrectly

Open createthis opened this issue 7 years ago • 0 comments

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';
}

createthis avatar Jan 08 '18 18:01 createthis