vim-jsx-typescript
vim-jsx-typescript copied to clipboard
Fix switch indentation
Before this PR:
switch (..) {
case ..:
line1... // <- not this weird indent
line2...
break;
}
After:
switch (..) {
case ..:
line1...
line2...
break;
}