summaryrefslogtreecommitdiff
path: root/ted.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-05 14:08:54 -0500
committerpommicket <pommicket@gmail.com>2023-01-05 14:08:54 -0500
commitda244a2bfb1e1139e772e272166fc0ecd4898ad4 (patch)
tree7f610d86553fc3cbbef520fe51a800cc7190276c /ted.c
parent3e0548caa2cf7d6b32cc029dbc9044ef877f6cee (diff)
lsp-configuration option
Diffstat (limited to 'ted.c')
-rw-r--r--ted.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ted.c b/ted.c
index c718dc2..4a76cd7 100644
--- a/ted.c
+++ b/ted.c
@@ -192,7 +192,7 @@ LSP *ted_get_lsp(Ted *ted, const char *path, Language language) {
if (*settings->lsp) {
// start up this LSP
char *root_dir = settings_get_root_dir(settings, path);
- ted->lsps[i] = lsp_create(root_dir, settings->lsp);
+ ted->lsps[i] = lsp_create(root_dir, settings->lsp, settings->lsp_configuration);
free(root_dir);
// don't actually return it yet, since it's still initializing (see above)
}