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
|
local server = require "nvim-lsp-installer.server"
local pip3 = require "nvim-lsp-installer.core.managers.pip3"
local process = require "nvim-lsp-installer.process"
local notify = require "nvim-lsp-installer.notify"
function _G.lsp_installer_pylsp_install_completion()
return table.concat({
"pyls-flake8",
"pylsp-mypy",
"pyls-spyder",
"pyls-isort",
"python-lsp-black",
"pyls-memestra",
"pylsp-rope",
}, "\n")
end
return function(name, root_dir)
return server.Server:new {
name = name,
root_dir = root_dir,
languages = { "python" },
homepage = "https://github.com/python-lsp/python-lsp-server",
installer = pip3.packages { "python-lsp-server[all]" },
default_options = {
cmd_env = pip3.env(root_dir),
commands = {
PylspInstall = {
function(...)
-- `nargs+` requires at least one argument -> no empty table
local plugins = { ... }
local plugins_str = table.concat(plugins, ", ")
notify(("Installing %q..."):format(plugins_str))
process.spawn(
"pip",
{
args = vim.list_extend({ "install", "-U", "--disable-pip-version-check" }, plugins),
stdio_sink = process.simple_sink(),
env = process.graft_env(pip3.env(root_dir)),
},
vim.schedule_wrap(function(success)
if success then
notify(("Successfully installed %q"):format(plugins_str))
else
notify("Failed to install requested plugins.", vim.log.levels.ERROR)
end
end)
)
end,
description = "Installs the provided packages in the same venv as pylsp.",
["nargs=+"] = true,
["complete=custom,v:lua.lsp_installer_pylsp_install_completion"] = true,
},
},
},
}
end
|