summaryrefslogtreecommitdiff
path: root/lsp-parse.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-27 18:28:56 -0500
committerpommicket <pommicket@gmail.com>2022-12-27 18:28:56 -0500
commite112a90ff73f7f407ed2251f905565713c237bc1 (patch)
treefd2cca33161c807cbbf8b29d9a49e778bee5aca8 /lsp-parse.c
parent1eaef3694d54d3d92f0b43304c72f5148b4e5db9 (diff)
start signature help
Diffstat (limited to 'lsp-parse.c')
-rw-r--r--lsp-parse.c51
1 files changed, 33 insertions, 18 deletions
diff --git a/lsp-parse.c b/lsp-parse.c
index a6e932e..339c490 100644
--- a/lsp-parse.c
+++ b/lsp-parse.c
@@ -78,6 +78,28 @@ static bool parse_range(LSP *lsp, const JSON *json, JSONValue range_value, LSPRa
}
+static uint32_t *parse_trigger_characters(const JSON *json, JSONArray trigger_chars) {
+ uint32_t *array = NULL;
+ arr_reserve(array, trigger_chars.len);
+ for (u32 i = 0; i < trigger_chars.len; ++i) {
+ char character[8] = {0};
+ json_string_get(json,
+ json_array_get_string(json, trigger_chars, i),
+ character,
+ sizeof character);
+ if (*character) {
+ // the fact that they're called "trigger characters" makes
+ // me think multi-character triggers aren't allowed
+ // even though that would be nice in some languages,
+ // e.g. "::"
+ char32_t c = 0;
+ unicode_utf8_to_utf32(&c, character, strlen(character));
+ if (c) arr_add(array, c);
+ }
+ }
+ return array;
+}
+
static void parse_capabilities(LSP *lsp, const JSON *json, JSONObject capabilities) {
LSPCapabilities *cap = &lsp->capabilities;
@@ -88,26 +110,19 @@ static void parse_capabilities(LSP *lsp, const JSON *json, JSONObject capabiliti
JSONObject completion = completion_value.val.object;
JSONArray trigger_chars = json_object_get_array(json, completion, "triggerCharacters");
- for (u32 i = 0; i < trigger_chars.len; ++i) {
- char character[8] = {0};
- json_string_get(json,
- json_array_get_string(json, trigger_chars, i),
- character,
- sizeof character);
- if (*character) {
- char32_t c = 0;
- unicode_utf8_to_utf32(&c, character, strlen(character));
- // the fact that they're called "trigger characters" makes
- // me think multi-character triggers aren't allowed
- // even though that would be nice in some languages,
- // e.g. "::"
- if (c) {
- arr_add(lsp->trigger_chars, c);
- }
- }
- }
+ lsp->completion_trigger_chars = parse_trigger_characters(json, trigger_chars);
}
+ // check SignatureHelpOptions
+ JSONValue signature_help_value = json_object_get(json, capabilities, "signatureHelpProvider");
+ if (signature_help_value.type == JSON_OBJECT) {
+ cap->signature_help_support = true;
+ JSONObject signature_help = signature_help_value.val.object;
+ JSONArray trigger_chars = json_object_get_array(json, signature_help, "triggerCharacters");
+ lsp->signature_help_trigger_chars = parse_trigger_characters(json, trigger_chars);
+ JSONArray retrigger_chars = json_object_get_array(json, signature_help, "retriggerCharacters");
+ lsp->signature_help_retrigger_chars = parse_trigger_characters(json, retrigger_chars);
+ }
JSONObject workspace = json_object_get_object(json, capabilities, "workspace");
// check WorkspaceFoldersServerCapabilities