diff options
| author | Tama McGlinn <t.mcglinn@gmail.com> | 2024-08-22 08:07:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-22 14:07:18 +0800 |
| commit | 367c1009c99f25b356f43ca82bc558008e721ff3 (patch) | |
| tree | 27443df8d7eae451e7ee0972adda687cf8157dcb /lua | |
| parent | fix(texlab): do not pass buf as parameter (#3276) (diff) | |
| download | nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar.gz nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar.bz2 nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar.lz nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar.xz nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.tar.zst nvim-lspconfig-367c1009c99f25b356f43ca82bc558008e721ff3.zip | |
fix(als): deprecate als in favour of a separate plugin (#3277)
To move towards the goal of having lsp configs decentralised
and lower the maintenance burden on current maintainers, as
requested by @glepnir, @mjlbach and @justinmk
See https://github.com/neovim/nvim-lspconfig/pull/1693
and https://github.com/neovim/nvim-lspconfig/issues/1683
and https://github.com/neovim/nvim-lspconfig/pull/3275#issuecomment-2301318994
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/als.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/als.lua b/lua/lspconfig/server_configurations/als.lua index 7d916adf..30e3227a 100644 --- a/lua/lspconfig/server_configurations/als.lua +++ b/lua/lspconfig/server_configurations/als.lua @@ -10,6 +10,10 @@ return { cmd = { bin_name }, filetypes = { 'ada' }, root_dir = util.root_pattern('Makefile', '.git', '*.gpr', '*.adc'), + deprecate = { + to = 'github.com/TamaMcGlinn/nvim-lspconfig-ada', + version = '0.2.0', + }, }, docs = { description = [[ |
