summaryrefslogtreecommitdiff
path: root/lsp.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-28 11:45:07 -0500
committerpommicket <pommicket@gmail.com>2022-12-28 11:45:07 -0500
commit11df4f10197d67e5b61898bd98cdfccc1159dd26 (patch)
tree7639b03aa348183eb563f6179c2435b5ea28a106 /lsp.h
parent47adb1651d35dcc545850916c4a16b747901dba5 (diff)
parsing signature help
Diffstat (limited to 'lsp.h')
-rw-r--r--lsp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lsp.h b/lsp.h
index 4491cd2..711db2a 100644
--- a/lsp.h
+++ b/lsp.h
@@ -273,6 +273,7 @@ typedef struct {
// to avoid doing a ton of allocations+frees,
// they're all stored here.
char *string_data;
+ // one of these is filled based on request.type
union {
LSPResponseCompletion completion;
LSPResponseSignatureHelp signature_help;