@@ -57,8 +57,8 @@ local statusline = require('lsp-status/statusline')
57
57
---
58
58
-- @param config: (required, table) Table of values; keys are as listed above. Accept defaults by
59
59
--- omitting the relevant key.
60
- local function configure ( config )
61
- _config = vim .tbl_extend (' keep' , config , _config , default_config )
60
+ local function config ( user_config )
61
+ _config = vim .tbl_extend (' keep' , user_config , _config , default_config )
62
62
pyls_ms ._init (messages , _config )
63
63
clangd ._init (messages , _config )
64
64
messaging ._init (messages , _config )
@@ -95,7 +95,7 @@ local function on_attach(client)
95
95
end
96
96
end
97
97
98
- configure (_config )
98
+ config (_config )
99
99
100
100
-- Stubs for documentation
101
101
--- Update the current function symbol.
@@ -171,7 +171,7 @@ local M = {
171
171
register_progress = messaging .register_progress ,
172
172
register_client = messaging .register_client ,
173
173
extensions = extension_callbacks ,
174
- config = configure ,
174
+ config = config ,
175
175
on_attach = on_attach ,
176
176
status = statusline .status ,
177
177
capabilities = messaging .capabilities
0 commit comments