summaryrefslogtreecommitdiff
path: root/lsp.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-30 15:27:38 -0500
committerpommicket <pommicket@gmail.com>2022-12-30 15:27:38 -0500
commitd51f4ce90fc40bb6b1813e7716d1db40cf91ee15 (patch)
treedbd72d0add72d4923244e93e476deeb422b0ff99 /lsp.c
parent547bfbba7a1ef84d397711882a501fc4914addba (diff)
cancelling requests
Diffstat (limited to 'lsp.c')
-rw-r--r--lsp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lsp.c b/lsp.c
index 60dd4d1..875aab2 100644
--- a/lsp.c
+++ b/lsp.c
@@ -46,6 +46,7 @@ static void lsp_request_free(LSPRequest *r) {
case LSP_REQUEST_INITIALIZE:
case LSP_REQUEST_INITIALIZED:
case LSP_REQUEST_SHUTDOWN:
+ case LSP_REQUEST_CANCEL:
case LSP_REQUEST_EXIT:
case LSP_REQUEST_COMPLETION:
case LSP_REQUEST_SIGNATURE_HELP:
@@ -145,6 +146,7 @@ static bool lsp_supports_request(LSP *lsp, const LSPRequest *request) {
return false;
case LSP_REQUEST_INITIALIZE:
case LSP_REQUEST_INITIALIZED:
+ case LSP_REQUEST_CANCEL:
case LSP_REQUEST_DID_OPEN:
case LSP_REQUEST_DID_CLOSE:
case LSP_REQUEST_DID_CHANGE:
@@ -182,6 +184,7 @@ static bool request_type_is_notification(LSPRequestType type) {
case LSP_REQUEST_NONE: break;
case LSP_REQUEST_INITIALIZED:
case LSP_REQUEST_EXIT:
+ case LSP_REQUEST_CANCEL:
case LSP_REQUEST_DID_OPEN:
case LSP_REQUEST_DID_CLOSE:
case LSP_REQUEST_DID_CHANGE:
@@ -575,3 +578,11 @@ bool lsp_covers_path(LSP *lsp, const char *path) {
SDL_UnlockMutex(lsp->workspace_folders_mutex);
return ret;
}
+
+void lsp_cancel_request(LSP *lsp, LSPRequestID id) {
+ if (!id) return;
+
+ LSPRequest request = {.type = LSP_REQUEST_CANCEL};
+ request.data.cancel.id = id;
+ lsp_send_request(lsp, &request);
+}