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
JetBrains' IDEs provide support for automatic folding for certain regions, some language-agnostic and some language-specific, e.g.:
The textDocument/foldingRange response does provide some limited categorization of folding ranges, e.g., the following from the TypeScript language server:
It would be nice if these could either be automatically mapped to the corresponding IDE folding regions, e.g., kind: imports => Settings | Editor | General | Code Folding | Fold by default | General | Imports, or if minimally there could be some other way to specify which values for kind should be folded by default, e.g., through client configuration.
The text was updated successfully, but these errors were encountered:
JetBrains' IDEs provide support for automatic folding for certain regions, some language-agnostic and some language-specific, e.g.:
The
textDocument/foldingRange
response does provide some limited categorization of folding ranges, e.g., the following from the TypeScript language server:and the following from the Java language server (jdtls):
It would be nice if these could either be automatically mapped to the corresponding IDE folding regions, e.g.,
kind: imports
=> Settings | Editor | General | Code Folding | Fold by default | General | Imports, or if minimally there could be some other way to specify which values forkind
should be folded by default, e.g., through client configuration.The text was updated successfully, but these errors were encountered: