diff options
Diffstat (limited to 'lsp-parse.c')
-rw-r--r-- | lsp-parse.c | 4 |
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); } |