summaryrefslogtreecommitdiff
path: root/lsp.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-12-26 01:28:49 -0500
committerpommicket <pommicket@gmail.com>2022-12-26 01:28:49 -0500
commit44d607df5d5a9a1c892fe56c4874fbef7f209464 (patch)
tree988a3a73951300986ea91d23d67bbe37a02d5daf /lsp.h
parent9602ae4d8582c3ccdb9e8c1561ad306491713be4 (diff)
start workspace folders stuff
Diffstat (limited to 'lsp.h')
-rw-r--r--lsp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lsp.h b/lsp.h
index 4301636..666ff1b 100644
--- a/lsp.h
+++ b/lsp.h
@@ -36,6 +36,7 @@ typedef enum {
// server-to-client
LSP_REQUEST_SHOW_MESSAGE,
LSP_REQUEST_LOG_MESSAGE,
+ LSP_REQUEST_WORKSPACE_FOLDERS, // NOTE: this is handled directly in lsp-parse.c (because it only needs information from the LSP struct)
} LSPRequestType;
typedef struct {
@@ -100,6 +101,7 @@ typedef struct {
// id is set by lsp.c; you shouldn't set it.
u32 id;
LSPRequestType type;
+ char *id_string; // if not NULL, this is the ID (only for server-to-client messages; we always use integer IDs)
union {
LSPRequestDidOpen open;
LSPRequestDidClose close;
@@ -274,7 +276,7 @@ typedef struct LSP {
char32_t *trigger_chars; // dynamic array of "trigger characters"
SDL_mutex *error_mutex;
Language language;
- char root_dir[TED_PATH_MAX];
+ char **workspace_folders; // dynamic array of root directories of LSP "workspaces" (meaningless garbage)
char error[256];
} LSP;
@@ -289,6 +291,8 @@ void lsp_message_free(LSPMessage *message);
u32 lsp_document_id(LSP *lsp, const char *path);
// don't free the contents of this request! let me handle it!
void lsp_send_request(LSP *lsp, LSPRequest *request);
+// don't free the contents of this response! let me handle it!
+void lsp_send_response(LSP *lsp, LSPResponse *response);
const char *lsp_response_string(const LSPResponse *response, LSPString string);
LSP *lsp_create(const char *root_dir, Language language, const char *analyzer_command);
bool lsp_next_message(LSP *lsp, LSPMessage *message);