aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorAmadeus Folego <amadeusfolego@gmail.com>2025-11-03 20:42:31 -0300
committerGitHub <noreply@github.com>2025-11-03 15:42:31 -0800
commit58838803216d3d5db4c4ed18433dcbb0e5d4118f (patch)
tree2f8def975f7fecb6be6f9e8ada24e7a59e482a5a /lsp
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar.gz
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar.bz2
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar.lz
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar.xz
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.tar.zst
nvim-lspconfig-58838803216d3d5db4c4ed18433dcbb0e5d4118f.zip
fix(expert): latest version requires --stdio flag #4174
See: https://github.com/elixir-lang/expert/issues/193#issuecomment-3480787095 Fix tested locally
Diffstat (limited to 'lsp')
-rw-r--r--lsp/expert.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/expert.lua b/lsp/expert.lua
index f7146a69..83141ed9 100644
--- a/lsp/expert.lua
+++ b/lsp/expert.lua
@@ -12,7 +12,7 @@
---@type vim.lsp.Config
return {
filetypes = { 'elixir', 'eelixir', 'heex', 'surface' },
- cmd = { 'expert' },
+ cmd = { 'expert', '--stdio' },
root_dir = function(bufnr, on_dir)
local fname = vim.api.nvim_buf_get_name(bufnr)
--- Elixir workspaces may have multiple `mix.exs` files, for an "umbrella" layout or monorepo.