aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/pyls_ms.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-12-07 22:10:33 -0800
committerJustin M. Keyes <justinkz@gmail.com>2019-12-08 03:04:13 -0800
commit56192022b25bf8e71e84e80c6a0936efd88c2f2b (patch)
tree0a1247ecc0124a4e7fc8d9165586b35f48c43443 /lua/nvim_lsp/pyls_ms.lua
parent:LspInstall : set complete fn to Lua fn (diff)
downloadnvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar.gz
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar.bz2
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar.lz
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar.xz
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.tar.zst
nvim-lspconfig-56192022b25bf8e71e84e80c6a0936efd88c2f2b.zip
remove Vimscript wrapper nvim_lsp#setup()
Lua is easy to use from Vimscript, there is no reason to have multiple ways to work with nvim-lsp. - massively clarifies the "story" that users need to comprehend - reduces surface area, maintenance, tests - avoids constant "Vim or Lua" dance in the documentation - simplifies discussions, tutorials, etc. - avoids confusing situation for users that start with Vimscript but later need Lua-only features
Diffstat (limited to 'lua/nvim_lsp/pyls_ms.lua')
-rw-r--r--lua/nvim_lsp/pyls_ms.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim_lsp/pyls_ms.lua b/lua/nvim_lsp/pyls_ms.lua
index eb352b11..3659b47e 100644
--- a/lua/nvim_lsp/pyls_ms.lua
+++ b/lua/nvim_lsp/pyls_ms.lua
@@ -113,8 +113,8 @@ skeleton[name] = {
-- on_attach = function(client, bufnr) end;
docs = {
description = [[
- https://github.com/Microsoft/python-language-server
- `python-language-server`, a language server for Python.
+https://github.com/Microsoft/python-language-server
+`python-language-server`, a language server for Python.
]];
default_config = {
root_dir = "vim's starting directory";