diff options
author | pommicket <pommicket@gmail.com> | 2022-12-10 12:31:03 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-10 12:31:03 -0500 |
commit | b7cbc84f296024d3a89e4604c1b114e79b4e752e (patch) | |
tree | 6e093847a80a30ee93e929c793c7076062454692 /ted.h | |
parent | a604ad77ff7ef6a75cccdeb86d1a5608caf7c2a6 (diff) |
more lsp
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -353,6 +353,8 @@ typedef struct { } BuildError; typedef struct Ted { + struct LSP *test_lsp; // @TODO: something better + SDL_Window *window; Font *font_bold; Font *font; @@ -471,6 +473,7 @@ void ted_switch_to_buffer(Ted *ted, TextBuffer *buffer); // the settings of the active buffer, or the default settings if there is no active buffer Settings *ted_active_settings(Ted *ted); void ted_load_configs(Ted *ted, bool reloading); +struct LSP *ted_get_lsp(Ted *ted, Language lang); static TextBuffer *find_search_buffer(Ted *ted); // first, we read all config files, then we parse them. // this is because we want less specific settings (e.g. settings applied |