Skip to content

Commit

Permalink
Merge #6858
Browse files Browse the repository at this point in the history
6858: Docs: Explain manual installation in VS Code r=lnicola a=cauthmann

same as rust-analyzer/rust-analyzer.github.io#81 , just against the correct repository this time

Co-authored-by: Christian Authmann <8371862+cauthmann@users.noreply.github.com>
  • Loading branch information
bors[bot] and cauthmann committed Dec 13, 2020
2 parents 917d562 + 78d43eb commit dbd0cfb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/user/manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,23 @@ If you don't want to be asked for `Download now` every day when the new nightly

NOTE: Nightly extension should **only** be installed via the `Download now` action from VS Code.

==== Manual installation

Alternatively, procure both `rust-analyzer.vsix` and your platform's matching `rust-analyzer-{platform}`, for example from the
https://github.com/rust-analyzer/rust-analyzer/releases[releases] page.

Install the extension with the `Extensions: Install from VSIX` command within VS Code, or from the command line via:
[source]
----
$ code --install-extension /path/to/rust-analyzer.vsix
----

Copy the `rust-analyzer-{platform}` binary anywhere, then add the path to your settings.json, for example:
[source,json]
----
{ "rust-analyzer.serverPath": "~/.local/bin/rust-analyzer-linux" }
----

==== Building From Source

Alternatively, both the server and the Code plugin can be installed from source:
Expand Down

0 comments on commit dbd0cfb

Please sign in to comment.