diff options
| author | Tiago Vilela <30515389+tiagovla@users.noreply.github.com> | 2023-12-01 00:54:08 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-01 11:54:08 +0800 |
| commit | 0b03c60517c71fa728851fb6f5b75a785efc2e59 (patch) | |
| tree | 796209722b2a59dfa44d2949be8751474ad65b10 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar.gz nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar.bz2 nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar.lz nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar.xz nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.tar.zst nvim-lspconfig-0b03c60517c71fa728851fb6f5b75a785efc2e59.zip | |
fix: remove custom handler (#2920)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/matlab_ls.lua | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lua/lspconfig/server_configurations/matlab_ls.lua b/lua/lspconfig/server_configurations/matlab_ls.lua index 80c868f0..cadc60b0 100644 --- a/lua/lspconfig/server_configurations/matlab_ls.lua +++ b/lua/lspconfig/server_configurations/matlab_ls.lua @@ -7,19 +7,13 @@ return { root_dir = util.find_git_ancestor, single_file_support = false, settings = { - matlab = { + MATLAB = { indexWorkspace = false, installPath = '', matlabConnectionTiming = 'onStart', telemetry = true, }, }, - handlers = { - ['workspace/configuration'] = function(_, _, ctx) - local client = vim.lsp.get_client_by_id(ctx.client_id) - return { client.config.settings.matlab } - end, - }, }, docs = { description = [[ |
