summaryrefslogtreecommitdiff
path: root/ted.c
diff options
context:
space:
mode:
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)
}