aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/pyls.lua
Commit message (Collapse)AuthorAgeFilesLines
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-23/+0
|
* pyls: fix definition of root dir to match the docsfrancisco souza2020-06-191-2/+1
|
* config: remove unnecessary code comennts and utf8 optionHirokazu Hata2020-05-181-3/+0
| | | | | 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.
* fix package.json source URIHirokazu Hata2020-04-101-1/+1
| | | | Resolve CI failure: https://github.com/neovim/nvim-lsp/runs/576174254
* window/showMessage: the display level can be set for 'window/showMessage' ↵Hirokazu Hata2020-02-241-2/+0
| | | | | | notification related with #127
* pyls: change root_dir to CWD #144Eisuke Kawashima2020-02-231-1/+4
| | | to prevent pyls from traversing HOME directory
* lua: remove `settings = {}`Hirokazu Hata2020-02-161-1/+0
| | | | configs.lua set settings vim.empty_dict() as default
* rename "skeleton" to "configs" #100Michael Lingelbach2020-01-311-2/+2
| | | | | | | | | | | | | | `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-1/+0
|
* Add package_json for pyls and update docgen (#32)Ashkan Kiani2019-11-171-37/+2
|
* Change root_dir for single instance servers (#33)Ashkan Kiani2019-11-171-1/+1
| | | | * Use os_homedir as root_dir for single instance servers.
* Fix docs and add util.once (#31)Ashkan Kiani2019-11-171-3/+1
|
* Add initial support for python-language-server (#3)Christian Clason2019-11-141-0/+65
* initial support for python-language-server * put settings in documentation also: update docgen script update setup call examples in README_preamble