about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2020-02-18 12:35:44 +0100
committerAleksey Kladov <aleksey.kladov@gmail.com>2020-02-18 12:35:44 +0100
commitc855e36696afa54260773a6bc8a358df67d60dea (patch)
treedfd4d8d71924d3281e3c5dc17840ac3db38e2dcb /docs
parentc0fa5e2246457df10e92c2e11c971f2f40921793 (diff)
downloadrust-c855e36696afa54260773a6bc8a358df67d60dea.tar.gz
rust-c855e36696afa54260773a6bc8a358df67d60dea.zip
Rename config value for server Path
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/README.md2
-rw-r--r--docs/user/readme.adoc4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/dev/README.md b/docs/dev/README.md
index 9da2eb0144a..8d7e1801092 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -92,7 +92,7 @@ launch configuration from `launch.json`. Notably, this uses the usual
 in `setting.json` file:
 ```json
 {
-    "rust-analyzer.raLspServerPath": "rust-analyzer"
+    "rust-analyzer.serverPath": "rust-analyzer"
 }
 ```
 After I am done with the fix, I use `cargo
diff --git a/docs/user/readme.adoc b/docs/user/readme.adoc
index aa1994b4929..74fda0abef6 100644
--- a/docs/user/readme.adoc
+++ b/docs/user/readme.adoc
@@ -64,7 +64,7 @@ To make VS Code use the freshly build server, add this to the settings:
 
 [source,json]
 ----
-{ "rust-analyzer.raLspServerPath": "rust-analyzer" }
+{ "rust-analyzer.serverPath": "rust-analyzer" }
 ----
 
 Note that installing via `xtask install` does not work for VS Code Remote, instead you'll need to install the `.vsix` manually.
@@ -102,7 +102,7 @@ The are several LSP client implementations for vim:
 2. Run `:CocInstall coc-rust-analyzer` to install
    https://github.com/fannheyward/coc-rust-analyzer[coc-rust-analyzer],
    this extension implements _most_ of the features supported in the VSCode extension:
-   * same configurations as VSCode extension, `rust-analyzer.raLspServerPath`, `rust-analyzer.enableCargoWatchOnStartup` etc.
+   * same configurations as VSCode extension, `rust-analyzer.serverPath`, `rust-analyzer.enableCargoWatchOnStartup` etc.
    * same commands too, `rust-analyzer.analyzerStatus`, `rust-analyzer.startCargoWatch` etc.
    * highlighting and inlay_hints are not implemented yet