aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/rust_analyzer.lua
Commit message (Collapse)AuthorAgeFilesLines
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-27/+0
|
* doc: show settings stub for rust-analyzer (#199)Aleksey Kladov2020-08-301-0/+3
|
* config: remove unnecessary code comennts and utf8 optionHirokazu Hata2020-06-161-1/+1
| | | | | 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
* Support rust-analyzer's rust-project.json formatBenjamin Brittain2020-03-181-2/+2
|
* window/showMessage: the display level can be set for 'window/showMessage' ↵Hirokazu Hata2020-02-241-2/+0
| | | | | | notification related with #127
* rust-analyzer: rename command nameHirokazu Hata2020-02-181-1/+1
|
* Use empty_dict instead of {}Hirokazu Hata2020-02-161-1/+0
|
* 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
* doc: fix copypastaJustin M. Keyes2019-12-091-2/+1
|
* remove Vimscript wrapper nvim_lsp#setup()Justin M. Keyes2019-12-081-3/+3
| | | | | | | | | | | | 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
* Add support for rust-analyzer (#43)csmoe2019-11-261-0/+28
* add support for rust-analyzer * add rust-analyzer package json