neoclide / coc-tsserver

Tsserver extension for coc.nvim that provide rich features like VSCode for javascript & typescript
MIT License
1.05k stars 68 forks source link

fix(folding): don't join folding range #380

Closed kevinhwang91 closed 2 years ago

kevinhwang91 commented 2 years ago

Without this PR, the server will join the two ranges Like:

if (true) {
  // foo
} else if (false) {
  // bar
}