From 405da5f84b072ea97b69359454899f45d92d24b6 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Wed, 22 May 2024 00:00:29 +0200 Subject: WIP LSP client This contains the start of an LSP client. Nothing (except starting the LSP server) works at the moment and the feature is disabled by default. --- src/main/lsp.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/lsp.h (limited to 'src/main/lsp.h') diff --git a/src/main/lsp.h b/src/main/lsp.h new file mode 100644 index 0000000..736282d --- /dev/null +++ b/src/main/lsp.h @@ -0,0 +1,11 @@ +#ifndef _MAIN_LSP_H +#define _MAIN_LSP_H + +struct reactor; +struct buffers; + +void lang_servers_init(struct reactor *reactor, struct buffers *buffers); +void lang_servers_update(void); +void lang_servers_teardown(void); + +#endif -- cgit v1.2.3