You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lite XL and Pragtical seem to not support code-folding. So, none of the Lite-based code editors currently support code-folding. It seems existing lexers will need to be modified to include code-folding rules (like what of scintillua).
The text was updated successfully, but these errors were encountered:
Yes, this is planned. We will probably rely on the LSP for this feature, since it's the easiest for us to provide it. So it will be limited to languages with LSP code-folding support. And maybe later if tree-sitter support is added we will be able to rely on the tree-sitter AST. Any other method is usually unreliable (simpler implementations will just code-fold with balanced bracket-matches, that maybe I'll support as a fallback method).
Code folding has been implemented, commit here plus the implementation of soft-wrap should close all the pending "basic" functionalities for a code-editor. Both features will be available in the next ecode release.
Lite XL and Pragtical seem to not support code-folding. So, none of the Lite-based code editors currently support code-folding. It seems existing lexers will need to be modified to include code-folding rules (like what of
scintillua
).The text was updated successfully, but these errors were encountered: