blob: 7c43c22b1cadb04b2bb26c9f9d693681a55fec9c (
plain) (
blame)
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
|
local configs = require 'lspconfig/configs'
local lspinfo = require 'lspconfig/lspinfo'
local M = {
util = require 'lspconfig/util';
}
M._root = {}
function M.available_servers()
return vim.tbl_keys(configs)
end
function M.installable_servers()
print("deprecated, see https://github.com/neovim/neovim/wiki/Following-HEAD")
end
-- Called from plugin/lspconfig.vim because it requires knowing that the last
-- script in scriptnames to be executed is lspconfig.
function M._root._setup()
M._root.commands = {
LspInfo = {
function()
lspinfo()
end;
"-nargs=?";
description = '`:LspInfo` Displays attached, active, and configured language servers';
};
LspInstall = {
function()
print("deprecated, see https://github.com/neovim/neovim/wiki/Following-HEAD")
end;
"-nargs=?";
"-complete=custom,v:lua.lsp_complete_installable_servers";
description = '`:LspInstall {name}` installs a server under stdpath("cache")/lspconfig/{name}';
};
LspInstallInfo = {
function()
print("deprecated, see https://github.com/neovim/neovim/wiki/Following-HEAD")
end;
"-nargs=?";
"-complete=custom,v:lua.lsp_complete_servers";
description = 'Print installation info for {name} if one is specified, or all installable servers.';
};
};
M.util.create_module_commands("_root", M._root.commands)
end
local mt = {}
function mt:__index(k)
if configs[k] == nil then
require('lspconfig/'..k)
end
return configs[k]
end
return setmetatable(M, mt)
-- vim:et ts=2 sw=2
|