summaryrefslogtreecommitdiff
path: root/lsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lsp.c')
-rw-r--r--lsp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lsp.c b/lsp.c
index a490aad..9ec7ad7 100644
--- a/lsp.c
+++ b/lsp.c
@@ -447,7 +447,9 @@ void lsp_free(LSP *lsp) {
arr_free(lsp->workspace_folders);
- arr_free(lsp->trigger_chars);
+ arr_free(lsp->completion_trigger_chars);
+ arr_free(lsp->signature_help_trigger_chars);
+ arr_free(lsp->signature_help_retrigger_chars);
memset(lsp, 0, sizeof *lsp);
free(lsp);
}