Skip to content

Commit

Permalink
feat: add pbls support (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
taketwo authored Aug 4, 2024
1 parent 9ac210a commit 490d0a9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ local DEFAULT_SETTINGS = {
| PowerShell | [`powershell_es`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#powershell_es) |
| Prisma | [`prismals`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#prismals) |
| Protobuf | [`bufls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#bufls) |
| Protobuf | [`pbls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pbls) |
| Puppet | [`puppet`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#puppet) |
| PureScript | [`purescriptls`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#purescriptls) |
| Python | [`ast_grep`](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#ast_grep) |
Expand Down
1 change: 1 addition & 0 deletions doc/mason-lspconfig-mapping.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ ols ols
omnisharp omnisharp
opencl-language-server opencl_ls
openscad-lsp openscad_lsp
pbls pbls
perlnavigator perlnavigator
pest-language-server pest_ls
phpactor phpactor
Expand Down
1 change: 1 addition & 0 deletions doc/server-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
| [omnisharp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#omnisharp) | [omnisharp](https://mason-registry.dev/registry/list#omnisharp) |
| [opencl_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#opencl_ls) | [opencl-language-server](https://mason-registry.dev/registry/list#opencl-language-server) |
| [openscad_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#openscad_lsp) | [openscad-lsp](https://mason-registry.dev/registry/list#openscad-lsp) |
| [pbls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pbls) | [pbls](https://mason-registry.dev/registry/list#pbls) |
| [perlnavigator](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#perlnavigator) | [perlnavigator](https://mason-registry.dev/registry/list#perlnavigator) |
| [pest_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#pest_ls) | [pest-language-server](https://mason-registry.dev/registry/list#pest-language-server) |
| [phpactor](https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#phpactor) | [phpactor](https://mason-registry.dev/registry/list#phpactor) |
Expand Down
2 changes: 1 addition & 1 deletion lua/mason-lspconfig/mappings/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ return {
plaintex = { "ltex", "texlab" },
postcss = { "tailwindcss" },
prisma = { "prismals" },
proto = { "bufls", "clangd" },
proto = { "bufls", "clangd", "pbls" },
ps1 = { "powershell_es" },
pug = { "emmet_language_server", "emmet_ls" },
puppet = { "puppet" },
Expand Down
1 change: 1 addition & 0 deletions lua/mason-lspconfig/mappings/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ M.lspconfig_to_package = {
["omnisharp_mono"] = "omnisharp-mono",
["opencl_ls"] = "opencl-language-server",
["openscad_lsp"] = "openscad-lsp",
["pbls"] = "pbls",
["perlnavigator"] = "perlnavigator",
["pest_ls"] = "pest-language-server",
["phpactor"] = "phpactor",
Expand Down

0 comments on commit 490d0a9

Please sign in to comment.