diff options
| author | Edward McFarlane <emcfarlane@buf.build> | 2025-10-20 18:35:45 +0100 |
|---|---|---|
| committer | Peter Lithammer <peter.lithammer@gmail.com> | 2025-10-20 21:59:55 +0200 |
| commit | fe11eb4466f889cad91c8ea6bce499e2c01bbc2f (patch) | |
| tree | bb6f072cdb150648f9f7172d200aa73de70bd9c2 /lsp | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar.gz nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar.bz2 nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar.lz nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar.xz nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.tar.zst nvim-lspconfig-fe11eb4466f889cad91c8ea6bce499e2c01bbc2f.zip | |
fix(buf_ls): update serve command for buf > v1.59.0
This updates the buf_ls command post v1.59.0, where the command was
promoted out of beta to general availability. The command was changed
from buf beta lsp to buf lsp serve.
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/buf_ls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp/buf_ls.lua b/lsp/buf_ls.lua index 75c0b448..25f84969 100644 --- a/lsp/buf_ls.lua +++ b/lsp/buf_ls.lua @@ -7,7 +7,7 @@ ---@type vim.lsp.Config return { - cmd = { 'buf', 'beta', 'lsp', '--timeout=0', '--log-format=text' }, + cmd = { 'buf', 'lsp', 'serve', '--timeout=0', '--log-format=text' }, filetypes = { 'proto' }, root_markers = { 'buf.yaml', '.git' }, } |
