aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-09-11 02:50:08 +0100
committerAleksey Kladov <[email protected]>2019-09-11 02:50:08 +0100
commit54e92e699cd7abfc19eeb8c98703992661ae995d (patch)
tree3f5395a458e8799450059908699267604fe860ab
parent1140a83c1b393cdcd18e42d5d816fd8be348b059 (diff)
clarify sublime instructions
closes #1811
-rw-r--r--docs/user/README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/user/README.md b/docs/user/README.md
index 8205fa404..5101e49b8 100644
--- a/docs/user/README.md
+++ b/docs/user/README.md
@@ -130,7 +130,7 @@ Installation:
130 130
131```json 131```json
132"rust-analyzer": { 132"rust-analyzer": {
133 "command": ["rustup", "run", "stable", "ra_lsp_server"], 133 "command": ["ra_lsp_server"],
134 "languageId": "rust", 134 "languageId": "rust",
135 "scopes": ["source.rust"], 135 "scopes": ["source.rust"],
136 "syntaxes": [ 136 "syntaxes": [
@@ -141,3 +141,5 @@ Installation:
141``` 141```
142 142
143* You can now invoke the command palette and type LSP enable to locally/globally enable the rust-analyzer LSP (type LSP enable, then choose either locally or globally, then select rust-analyzer) 143* You can now invoke the command palette and type LSP enable to locally/globally enable the rust-analyzer LSP (type LSP enable, then choose either locally or globally, then select rust-analyzer)
144
145* Note that `ra_lsp_server` binary must be in `$PATH` for this to work. If it's not the case, you can specify full path to the binary, which is typically `.cargo/bin/ra_lsp_server`.