aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/pyls.lua
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-07-14 23:36:49 -0700
committerGitHub <noreply@github.com>2021-07-14 23:36:49 -0700
commit0429852c1713c44a34981ffe25b51a08eafe840b (patch)
tree988aff34d47087751ed7e435efeb8e5cb92f23c6 /lua/lspconfig/pyls.lua
parent[docgen] Update CONFIG.md (diff)
downloadnvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar.gz
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar.bz2
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar.lz
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar.xz
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.tar.zst
nvim-lspconfig-0429852c1713c44a34981ffe25b51a08eafe840b.zip
chore: remove pyls and pyls_ms (#1074)
* pyls is unmaintained and has been continued as a community fork, pylsp * pyls_ms has been abandoned by microsoft in favor of the proprietary pylance/the less featureful (but open-source) pyright
Diffstat (limited to 'lua/lspconfig/pyls.lua')
-rw-r--r--lua/lspconfig/pyls.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/lua/lspconfig/pyls.lua b/lua/lspconfig/pyls.lua
deleted file mode 100644
index 3523b4e7..00000000
--- a/lua/lspconfig/pyls.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-local configs = require 'lspconfig/configs'
-
-configs.pyls = {
- default_config = {
- cmd = { 'pyls' },
- filetypes = { 'python' },
- root_dir = function(fname)
- return vim.fn.getcwd()
- end,
- },
- docs = {
- package_json = 'https://raw.githubusercontent.com/palantir/python-language-server/develop/vscode-client/package.json',
- description = [[
-https://github.com/palantir/python-language-server
-
-`python-language-server`, a language server for Python.
-
-The language server can be installed via `pipx install 'python-language-server[all]'`.
-
- ]],
- default_config = {
- root_dir = "vim's starting directory",
- },
- },
-}
--- vim:et ts=2 sw=2