nvim-lspconfig/lua/lspconfig.lua
Yi Ming bdbc65aadc
feat(ts_ls)!: rename tsserver to ts_ls #3232
`tsserver` cannot be used as an abbreviation for `typescript-language-server`, because there is [`tsserver`](https://github.com/microsoft/TypeScript/wiki/Standalone-Server-(tsserver)) already and it is completely different from `typescript-language-server`. This is misleading.

As the [README of `typescript-language-server`](https://github.com/typescript-language-server/typescript-language-server/blob/master/README.md) says, it's a wrapper of `tsserver`. This abuse has been around for so many time in lspconfig that people don't realize they are two different things, and are then confused by replacements of `typescript-language-server` like [typescript-tools.nvim](https://github.com/pmizio/typescript-tools.nvim) and [vtsls](https://github.com/yioneko/vtsls).
2024-09-05 01:26:31 -07:00

67 lines
1.5 KiB
Lua

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',
},
tsserver = {
to = 'ts_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)