diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-11-26 08:50:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-26 08:50:07 -0500 |
| commit | 58b2842447a5b46cd040df628d257346893d8c62 (patch) | |
| tree | 643ed90860de0c7c862b3797fcd79b90f2864920 /lua/lspconfig/util.lua | |
| parent | fix: only set cmd_cwd if filepath exists (#1485) (diff) | |
| parent | chore: clean up imports (diff) | |
| download | nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar.gz nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar.bz2 nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar.lz nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar.xz nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.tar.zst nvim-lspconfig-58b2842447a5b46cd040df628d257346893d8c62.zip | |
Merge pull request #1479 from mjlbach/accessible-configs
feat: expose configs
Diffstat (limited to 'lua/lspconfig/util.lua')
| -rw-r--r-- | lua/lspconfig/util.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/util.lua b/lua/lspconfig/util.lua index 4d340391..ec3ffa95 100644 --- a/lua/lspconfig/util.lua +++ b/lua/lspconfig/util.lua @@ -386,7 +386,7 @@ function M.get_active_clients_list_by_ft(filetype) end function M.get_other_matching_providers(filetype) - local configs = require 'lspconfig/configs' + local configs = require 'lspconfig.configs' local active_clients_list = M.get_active_clients_list_by_ft(filetype) local other_matching_configs = {} for _, config in pairs(configs) do |
