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/bindings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/bindings.h') diff --git a/src/main/bindings.h b/src/main/bindings.h index 4fd760a..96f20fd 100644 --- a/src/main/bindings.h +++ b/src/main/bindings.h @@ -4,7 +4,7 @@ struct keymap; struct buffer; struct binding; -void init_bindings(); +void init_bindings(void); typedef uint64_t buffer_keymap_id; buffer_keymap_id buffer_add_keymap(struct buffer *buffer, struct keymap keymap); @@ -12,4 +12,4 @@ void buffer_remove_keymap(buffer_keymap_id id); uint32_t buffer_keymaps(struct buffer *buffer, struct keymap *keymaps[], uint32_t max_nkeymaps); -void destroy_bindings(); +void destroy_bindings(void); -- cgit v1.2.3