summaryrefslogtreecommitdiff
path: root/lsp-json.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-08-04 19:35:48 -0400
committerpommicket <pommicket@gmail.com>2023-08-04 19:35:48 -0400
commit45d69107725a02cf6d912a571b771da3ef5abfbf (patch)
tree6b5d44104f57074dc00f1bab8eed986ca707b8a2 /lsp-json.c
parentf278b832dc6e085d05b243bbae2af82e78e36d6d (diff)
textDocument/documentLink parsing
Diffstat (limited to 'lsp-json.c')
-rw-r--r--lsp-json.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lsp-json.c b/lsp-json.c
index 08f926a..4884c8c 100644
--- a/lsp-json.c
+++ b/lsp-json.c
@@ -663,6 +663,7 @@ void json_debug_print(const JSON *json) {
printf("%u values (capacity %u, text length %zu)\n",
arr_len(json->values), arr_cap(json->values), strlen(json->text));
json_debug_print_value(json, json->values[0]);
+ printf("\n");
}
// e.g. converts "Hello\nworld" to "Hello\\nworld"