diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-11-11 19:23:44 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-11 19:23:44 -0800 |
| commit | 0d2722a63e7e79bfc97ea10322ecbbfd48154e77 (patch) | |
| tree | cc7d7f81321570d2277ef191b617c655ee11fa1d /lua/lspconfig/efm.lua | |
| parent | fix: update error message (#1406) (diff) | |
| download | nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar.gz nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar.bz2 nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar.lz nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar.xz nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.tar.zst nvim-lspconfig-0d2722a63e7e79bfc97ea10322ecbbfd48154e77.zip | |
fix(efm): disable single file support (#1413)
Diffstat (limited to 'lua/lspconfig/efm.lua')
| -rw-r--r-- | lua/lspconfig/efm.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/lspconfig/efm.lua b/lua/lspconfig/efm.lua index 445dc6da..a96b22de 100644 --- a/lua/lspconfig/efm.lua +++ b/lua/lspconfig/efm.lua @@ -8,7 +8,9 @@ configs[server_name] = { default_config = { cmd = { bin_name }, root_dir = util.find_git_ancestor, - single_file_support = true, + -- EFM does not support NULL root directories + -- https://github.com/neovim/nvim-lspconfig/issues/1412 + single_file_support = false, }, docs = { |
