summaryrefslogtreecommitdiff
path: root/lsp-parse.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-09-08 17:17:35 -0400
committerpommicket <pommicket@gmail.com>2023-09-08 17:18:51 -0400
commit100859239a28c2709bb3e2cdce347300a2b763e2 (patch)
treeb45486fe7c2a3318d9702adbe17ce17b672a78d1 /lsp-parse.c
parent49f22fb75ae7ec5ffa98532c060d81e18d71575c (diff)
LSP over TCP initial draft
Diffstat (limited to 'lsp-parse.c')
-rw-r--r--lsp-parse.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lsp-parse.c b/lsp-parse.c
index df87a13..70301d3 100644
--- a/lsp-parse.c
+++ b/lsp-parse.c
@@ -802,6 +802,10 @@ static bool parse_server2client_request(LSP *lsp, JSON *json, LSPRequest *reques
} else if (streq(method, "textDocument/publishDiagnostics")) {
request->type = LSP_REQUEST_PUBLISH_DIAGNOSTICS;
return parse_publish_diagnostics(lsp, json, request);
+ } else if (streq(method, "gdscript_client/changeWorkspace")) {
+ // i ignore you (this is just a notification)
+ } else if (streq(method, "gdscript/capabilities")) {
+ // i ignore you (this is just a notification)
} else {
debug_println("Unrecognized request method: %s", method);
}