diff options
| author | theJian <thejianmail@gmail.com> | 2020-05-14 11:03:53 +0800 |
|---|---|---|
| committer | theJian <thejianmail@gmail.com> | 2020-05-14 11:03:53 +0800 |
| commit | 53b235750358887dc1c21f0254739dec54d777ec (patch) | |
| tree | 0dadb8fb3c47c1001f2eedaf9166114f568a6851 /lua/nvim_lsp/pyls_ms.lua | |
| parent | [docgen] Update README.md (diff) | |
| download | nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar.gz nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar.bz2 nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar.lz nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar.xz nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.tar.zst nvim-lspconfig-53b235750358887dc1c21f0254739dec54d777ec.zip | |
Add instrument of install by yourself for pyls_ms
Diffstat (limited to 'lua/nvim_lsp/pyls_ms.lua')
| -rw-r--r-- | lua/nvim_lsp/pyls_ms.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim_lsp/pyls_ms.lua b/lua/nvim_lsp/pyls_ms.lua index 555f7a40..daf90669 100644 --- a/lua/nvim_lsp/pyls_ms.lua +++ b/lua/nvim_lsp/pyls_ms.lua @@ -134,6 +134,14 @@ Requires [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-i curl -L https://dot.net/v1/dotnet-install.sh | sh ``` +`python-language-server` can be installed via `:LspInstall pyls_ms` or you can [build](https://github.com/microsoft/python-language-server/blob/master/CONTRIBUTING.md#setup) your own. + +If you want to use your own build, set cmd to point to `Microsoft.Python.languageServer.dll`. + +```lua +cmd = { "dotnet", "exec", "path/to/Microsoft.Python.languageServer.dll" }; +``` + This server accepts configuration via the `settings` key. ]]; |
