From aabe543ee93796330158fa7fd247fb1ebeb8e3bb Mon Sep 17 00:00:00 2001 From: pommicket Date: Fri, 23 Dec 2022 21:25:48 -0500 Subject: remove old code --- lsp-parse.c | 16 ++-------------- main.c | 1 - 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/lsp-parse.c b/lsp-parse.c index 0c75acf..86a223d 100644 --- a/lsp-parse.c +++ b/lsp-parse.c @@ -327,20 +327,8 @@ static void process_message(LSP *lsp, JSON *json) { JSONValue error = json_get(json, "error.message"); if (error.type == JSON_STRING) { char err[256] = {0}; - json_string_get(json, error.val.string, err, sizeof err);; - - if (streq(err, "waiting for cargo metadata or cargo check")) { - // fine. be that way. i'll resend the goddamn request. - // i'll keep bombarding you with requests. - // maybe next time you should abide by the standard and only send an initialize response when youre actually ready to handle my requests. fuck you. - if (response_to.type) { - lsp_send_request(lsp, &response_to); - // don't free - memset(&response_to, 0, sizeof response_to); - } - } else { - lsp_set_error(lsp, "%s", err); - } + json_string_get(json, error.val.string, err, sizeof err); + printf("%s\n",err); goto ret; } diff --git a/main.c b/main.c index 82840b8..da6e3e2 100644 --- a/main.c +++ b/main.c @@ -11,7 +11,6 @@ - run everything through valgrind ideally with leak checking - rust-analyzer bug reports: - bad json can give "Unexpected error: client exited without proper shutdown sequence" - - rust-analyzer should wait until cargo metadata/check is done before sending initialize response FUTURE FEATURES: - robust find (results shouldn't move around when you type things) - multiple files with command line arguments -- cgit v1.2.3