1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
local configs = require 'lspconfig.configs'
local M = {
util = require 'lspconfig.util',
}
---@class Alias
---@field to string The new name of the server
---@field version string The version that the alias will be removed in
---@param name string
---@return Alias
local function server_alias(name)
local aliases = {
['fennel-ls'] = {
to = 'fennel_ls',
version = '0.2.0',
},
ruby_ls = {
to = 'ruby_lsp',
version = '0.2.0',
},
['starlark-rust'] = {
to = 'starlark_rust',
version = '0.2.0',
},
sumneko_lua = {
to = 'lua_ls',
version = '0.2.0',
},
}
return aliases[name]
end
local mt = {}
function mt:__index(k)
if configs[k] == nil then
local alias = server_alias(k)
if alias then
vim.deprecate(k, alias.to, alias.version, 'lspconfig', false)
k = alias.to
end
local success, config = pcall(require, 'lspconfig.server_configurations.' .. k)
if success then
configs[k] = config
else
vim.notify(
string.format(
'[lspconfig] Cannot access configuration for %s. Ensure this server is listed in '
.. '`server_configurations.md` or added as a custom server.',
k
),
vim.log.levels.WARN
)
-- Return a dummy function for compatibility with user configs
return { setup = function() end }
end
end
return configs[k]
end
return setmetatable(M, mt)
|