diff options
| author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-05-18 12:55:11 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-18 12:55:11 +0900 |
| commit | e509d7ed32851f21d3d207cb1539da092d476611 (patch) | |
| tree | 2673e8c452f30f5c8a7f969954d12ac0c60d978c /lua | |
| parent | [docgen] Update README.md (diff) | |
| parent | Add instrument of install by yourself for pyls_ms (diff) | |
| download | nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar.gz nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar.bz2 nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar.lz nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar.xz nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.tar.zst nvim-lspconfig-e509d7ed32851f21d3d207cb1539da092d476611.zip | |
Merge pull request #232 from theJian/doc/pyls_ms-install-by-self-instrument
Diffstat (limited to '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. ]]; |
