summaryrefslogtreecommitdiff
path: root/lsp-parse.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-28 13:29:01 -0500
committerpommicket <pommicket@gmail.com>2022-12-28 13:29:01 -0500
commitf57b21c5a6ac9913e3b9727abfed951708917250 (patch)
treeb3bfd84139c9d79abd51bcb74adaf0d50966e15e /lsp-parse.c
parentd6b2cc80723ce6e8454449bcdcdcb495f7a08ad9 (diff)
moving things around a bit
Diffstat (limited to 'lsp-parse.c')
-rw-r--r--lsp-parse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lsp-parse.c b/lsp-parse.c
index 828c672..703bc51 100644
--- a/lsp-parse.c
+++ b/lsp-parse.c
@@ -301,6 +301,7 @@ static bool parse_completion(LSP *lsp, const JSON *json, LSPResponse *response)
static bool parse_signature_help(LSP *lsp, const JSON *json, LSPResponse *response) {
JSONObject result = json_force_object(json_get(json, "result"));
+ json_debug_print_object(json, result);printf("\n");
LSPResponseSignatureHelp *help = &response->data.signature_help;
u32 active_signature = 0;