vim-jsx-typescript icon indicating copy to clipboard operation
vim-jsx-typescript copied to clipboard

Fix switch indentation

Open dhleong opened this issue 4 years ago • 0 comments

Before this PR:

switch (..) {
  case ..:
  line1...      // <- not this weird indent
    line2...
    break;
}

After:

switch (..) {
  case ..:
    line1...
    line2...
    break;
}

dhleong avatar Jan 26 '21 19:01 dhleong