Skip to content

Commit

Permalink
fix(proto): replace deprecated bufls with buf_ls (#1275)
Browse files Browse the repository at this point in the history
Update language server references from `bufls` to `buf_ls` as `bufls`
is deprecated and will be removed in lspconfig 0.2.1.
  • Loading branch information
imsakg authored Nov 23, 2024
1 parent e986131 commit bb7988a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/proto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
This plugin pack does the following:

- Adds `proto` Treesitter parsers
- Adds `bufls` language servers
- Adds `buf_ls` language servers
- Adds `buf` formatter
2 changes: 1 addition & 1 deletion lua/astrocommunity/pack/proto/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ return {
"williamboman/mason-lspconfig.nvim",
optional = true,
opts = function(_, opts)
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "bufls" })
opts.ensure_installed = require("astrocore").list_insert_unique(opts.ensure_installed, { "buf_ls" })
end,
},
{
Expand Down

0 comments on commit bb7988a

Please sign in to comment.