-
Notifications
You must be signed in to change notification settings - Fork 64
Supported LSP requests
Maxim Reznik edited this page Apr 23, 2024
·
5 revisions
Request | Supported |
---|---|
initialize |
✅ |
initialized |
✅ |
shutdown |
✅ |
exit |
✅ |
$/cancelRequest |
✅ |
Request | Supported | OOE |
---|---|---|
workspace/didChangeConfiguration |
✅ | 🙅 |
workspace/didChangeWorkspaceFolders |
✅ | |
workspace/didChangeWatchedFiles |
✅ | |
workspace/symbol |
✅ | |
workspace/executeCommand |
✅ |
Request | Supported | OOE |
---|---|---|
textDocument/didOpen |
✅ | |
textDocument/didChange |
✅ | 🙅 |
textDocument/willSave |
||
textDocument/willSaveWaitUntil |
||
textDocument/didSave |
||
textDocument/didClose |
✅ |
Request | Supported | OOE |
---|---|---|
textDocument/completion |
✅ | |
completionItem/resolve |
||
textDocument/hover |
✅ | 🐇 |
textDocument/signatureHelp |
✅ | |
textDocument/definition |
✅ | 🐇 |
textDocument/declaration |
✅ | 🐇 |
textDocument/typeDefinition |
✅ | |
textDocument/implementation |
✅ | |
textDocument/references |
✅ | 🐢 |
textDocument/documentHighlight |
✅ | |
textDocument/documentSymbol |
✅ | 🐢 |
textDocument/codeAction |
✅ | |
textDocument/codeLens |
||
codeLens/resolve |
||
textDocument/documentLink |
||
documentLink/resolve |
||
textDocument/documentColor |
||
textDocument/colorPresentation |
||
textDocument/formatting |
✅ | |
textDocument/rangeFormatting |
✅ | |
textDocument/onTypeFormatting |
✅ | |
textDocument/rename |
✅ | |
textDocument/prepareRename |
✅ | |
textDocument/foldingRange |
✅ | |
textDocument/prepareCallHierarchy |
✅ | |
callHierarchy/incomingCalls |
✅ | |
callHierarchy/outgoingCalls |
✅ | |
textDocument/semanticTokens/full |
✅ | 🐢 |
textDocument/semanticTokens/range |
✅ | 🐇 |
ALS is able to execute some requests out of order they are arriving. For these request we have several execution strategies:
- 🙅 (fence priority) - don't execute the request till any previously arrived requests are executed. This priority mostly works as in-order execution.
- 🐇 (high priority) - execute the request as fast as possible
- 🐢 (low priority) - execute the request in the background