Pure-D / serve-d

D LSP server (dlang language server protocol server)
MIT License
200 stars 48 forks source link

Incorrect folding region #264

Closed ryuukk closed 1 year ago

ryuukk commented 1 year ago

VScode released a new feature: sticky scroll, it allows header of folding regions to stick when you scroll

Setting: "editor.stickyScroll.enabled": true,

How it should look:

image

How it looks on D code:

image

EDIT:

It only works when the brackets start on the same line at the folding header

image

When it's on a new line it doesn't, so the range should account for that in serve-d

WebFreak001 commented 1 year ago

sticky scroll doesn't use the folding regions, but the outline. You need to open or vote on an issue there if you want it to default to folding. Folding regions can definitely be improved though.

ryuukk commented 1 year ago

thanks for your work!