diff options
| author | idealseal <realidealseal@protonmail.com> | 2025-11-21 21:50:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-21 13:50:58 -0800 |
| commit | 3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc (patch) | |
| tree | b783a9a6e497a3d71e0c028933d180137b1e145d | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar.gz nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar.bz2 nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar.lz nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar.xz nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.tar.zst nvim-lspconfig-3d477ce88ac5d4dd7d29897b2cd63f09e31e2efc.zip | |
fix(neocmake): use subcommand instead of flag #4208
Old versions accept both, however starting with v0.9.0 only
subcommands will be recognized.
| -rw-r--r-- | lsp/neocmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/neocmake.lua b/lsp/neocmake.lua index cd08efb8..34f8dac2 100644 --- a/lsp/neocmake.lua +++ b/lsp/neocmake.lua @@ -18,7 +18,7 @@ ---@type vim.lsp.Config return { - cmd = { 'neocmakelsp', '--stdio' }, + cmd = { 'neocmakelsp', 'stdio' }, filetypes = { 'cmake' }, root_markers = { '.git', 'build', 'cmake' }, } |
