summaryrefslogtreecommitdiff
path: root/lsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lsp.c')
-rw-r--r--lsp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lsp.c b/lsp.c
index a7d7e2f..dde58d6 100644
--- a/lsp.c
+++ b/lsp.c
@@ -523,6 +523,11 @@ LSP *lsp_create(const char *root_dir, const char *command, const char *configura
lsp->quit_sem = SDL_CreateSemaphore(0);
lsp->error_mutex = SDL_CreateMutex();
lsp->messages_mutex = SDL_CreateMutex();
+
+ // document ID 0 is reserved
+ LSPDocumentID zero_id = lsp_document_id(lsp, "");
+ assert(zero_id == 0);
+
arr_add(lsp->workspace_folders, lsp_document_id(lsp, root_dir));
lsp->workspace_folders_mutex = SDL_CreateMutex();