diff options
| author | Stefan VanBuren <stefan@vanburen.xyz> | 2025-12-20 16:31:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-20 16:31:54 -0500 |
| commit | 2d65c90bec9e4b49aa8f9377840f188f131a2c7e (patch) | |
| tree | a4f9b3f438dce58df26c5ad159a06b6eac0ff616 | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar.gz nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar.bz2 nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar.lz nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar.xz nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.tar.zst nvim-lspconfig-2d65c90bec9e4b49aa8f9377840f188f131a2c7e.zip | |
fix(buf_ls): remove unnecessary flags + "beta" comment #4250
| -rw-r--r-- | lsp/buf_ls.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lsp/buf_ls.lua b/lsp/buf_ls.lua index 379aaa7e..2d2f5a7e 100644 --- a/lsp/buf_ls.lua +++ b/lsp/buf_ls.lua @@ -1,13 +1,13 @@ --- @brief --- https://github.com/bufbuild/buf --- ---- buf beta lsp included in the cli itself +--- buf lsp included in the cli itself --- ---- buf beta lsp is a Protobuf language server compatible with Buf modules and workspaces +--- buf lsp is a Protobuf language server compatible with Buf modules and workspaces ---@type vim.lsp.Config return { - cmd = { 'buf', 'lsp', 'serve', '--timeout=0', '--log-format=text' }, + cmd = { 'buf', 'lsp', 'serve', '--log-format=text' }, filetypes = { 'proto' }, root_markers = { 'buf.yaml', '.git' }, reuse_client = function(client, config) |
