aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/pyls_ms.lua
Commit message (Collapse)AuthorAgeFilesLines
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-153/+0
|
* Remove call to get Python interpreter and version.kosayoda2020-07-011-9/+9
| | | | | | | | | | | By default, the Microsoft Python Language Server already gets an existing Python interpreter and version from $PATH if the setting is an empty string or null. https://github.com/microsoft/python-language-server/blob/838ba78e00173d639bd90f54d8610ec16b4ba3a2/src/LanguageServer/Impl/Implementation/Server.cs#L143 Looking for `python` and launching the interpreter to get the version on our end is redundant and time-consuming.
* config: remove unnecessary code comennts and utf8 optionHirokazu Hata2020-05-181-13/+11
| | | | | Remove meaningless code comments because they are increased by copy and paste. Currently, utf8 options are only supported by clangd, so remove them from unnecessary ones.
* Add instrument of install by yourself for pyls_mstheJian2020-05-141-0/+8
|
* Automatically fetch latest version of pyls_msMichael Lingelbach2020-03-281-1/+13
|
* Update pyls_ms: 0.5.31yaegassy2020-03-231-1/+1
|
* window/showMessage: the display level can be set for 'window/showMessage' ↵Hirokazu Hata2020-02-241-2/+0
| | | | | | notification related with #127
* pyls_ms: bump auto-install version #99Michael Lingelbach2020-01-311-1/+1
|
* rename "skeleton" to "configs" #100Michael Lingelbach2020-01-311-4/+4
| | | | | | | | | | | | | | `nvim_lsp/skeleton.lua` is not really a skeleton, it's a `configs` class that provides 1. actual functionality 2. a bunch of configs Each config is added to the `configs` object (FKA "skeleton") as a property. Those configs are not "templates", they are "configs". So we should clean up the wording in various places to say "config" instead of "skeleton"/"template". Closes #64
* CI: luacheck #86Hirokazu Hata2019-12-311-4/+5
|
* pyls_ms: add documentation, fix os check #78Michael Lingelbach2019-12-221-3/+13
|
* pyls_ms: Fix OS detection #72JINNOUCHI Yasushi2019-12-161-3/+3
| | | vim.fn.has('xxx') returns 1 or 0 that both are true in lua.
* remove Vimscript wrapper nvim_lsp#setup()Justin M. Keyes2019-12-081-2/+2
| | | | | | | | | | | | 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
* pyls_ms: Microsoft Python Language Server #57Michael Lingelbach2019-11-291-0/+126