We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
textDocument/foldingRange
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for textDocument/foldingRange, which allows editors to provide folding support (for code blocks, imports, folding regions ...). See LSP proposal: https://github.com/Microsoft/vscode-languageserver-protocol-foldingprovider/blob/master/protocol.foldingProvider.md
The text was updated successfully, but these errors were encountered:
Requires upstream lsp4j implementation: eclipse-lsp4j/lsp4j#169
Sorry, something went wrong.
I missed the missing region delimiters folding support, before merging #962. @yaohaizh can you please add support for:
//#region
//#endregion
//region
//endregion
// <editor-fold desc="Description">
// </editor-fold>
Interesting. Should we support the //#region and //#endregion? It is a C# grammar.
yup, just so that we keep feature parity with the current vscode-java implem
yaohaizh
No branches or pull requests
Add support for
textDocument/foldingRange
, which allows editors to provide folding support (for code blocks, imports, folding regions ...). See LSP proposal: https://github.com/Microsoft/vscode-languageserver-protocol-foldingprovider/blob/master/protocol.foldingProvider.mdThe text was updated successfully, but these errors were encountered: