kilbd / nova-rust

A Rust extension for the Nova text editor, using the Rust Analyzer language server.
MIT License
29 stars 5 forks source link

Support code folding ribbon #46

Open cjwcommuny opened 1 year ago

cjwcommuny commented 1 year ago

Is your feature request related to a problem? Please describe.

Currently the extension doesn't support folding ribbon as shown in the screenshot.

截屏2023-06-23 18 10 57

Describe the solution you'd like

Support it!

Additional context

Environment:

kilbd commented 1 year ago

Yep, I should add code folding queries. Thanks for bringing this to my attention! I feel like folds used to come for free with symbols but maybe that changed with Tree Sitter? Admittedly, I don't use folding because folds are forgotten between sessions.

kilbd commented 1 year ago

I'm not crazy – after commenting out Tree Sitter so it fell back on regex syntax definitions, fold ribbons appeared:

Screenshot 2023-06-25 at 10 37 12 AM

Good to know!