2019-03-20 04:17:12 -05:00
The main interface to rust-analyzer is the
[LSP ](https://microsoft.github.io/language-server-protocol/ ) implementation. To
2019-07-27 06:35:18 -05:00
install lsp server, use `cargo install-ra --server` , which is a shorthand for `cargo
2019-03-20 04:17:12 -05:00
install --package ra_lsp_server`. The binary is named `ra_lsp_server` , you
should be able to use it with any LSP-compatible editor. We use custom
extensions to LSP, so special client-side support is required to take full
advantage of rust-analyzer. This repository contains support code for VS Code
and Emacs.
Rust Analyzer needs sources of rust standard library to work, so you might need
to execute
```
$ rustup component add rust-src
```
2019-03-20 04:21:55 -05:00
See [./features.md ](./features.md ) document for a list of features that are available.
2019-03-20 04:17:12 -05:00
## VS Code
2019-02-10 15:09:33 -06:00
2019-03-13 09:23:22 -05:00
Prerequisites:
2019-02-10 15:09:33 -06:00
In order to build the VS Code plugin, you need to have node.js and npm with
a minimum version of 10 installed. Please refer to
[node.js and npm documentation ](https://nodejs.org ) for installation instructions.
2019-02-12 09:28:39 -06:00
You will also need the most recent version of VS Code: we don't try to
maintain compatibility with older versions yet.
2019-02-10 15:09:33 -06:00
The experimental VS Code plugin can then be built and installed by executing the
following commands:
2018-09-16 07:36:09 -05:00
```
2019-01-12 11:02:16 -06:00
$ git clone https://github.com/rust-analyzer/rust-analyzer.git --depth 1
2018-12-27 08:56:07 -06:00
$ cd rust-analyzer
2019-07-27 06:35:18 -05:00
$ cargo install-ra
2018-09-16 07:36:09 -05:00
```
2019-05-11 06:22:44 -05:00
The automatic installation is expected to *just work* for common cases, if it
doesn't, report bugs!
2019-05-30 09:10:10 -05:00
If you have an unusual setup (for example, `code` is not in the `PATH` ), you
2019-05-11 06:22:44 -05:00
should adapt these manual installation instructions:
```
$ git clone https://github.com/rust-analyzer/rust-analyzer.git --depth 1
$ cd rust-analyzer
$ cargo install --path ./crates/ra_lsp_server/ --force
$ cd ./editors/code
$ npm install
$ ./node_modules/vsce/out/vsce package
$ code --install-extension ./ra-lsp-0.0.1.vsix
```
2018-09-16 07:36:09 -05:00
It's better to remove existing Rust plugins to avoid interference.
2019-03-20 04:17:12 -05:00
Beyond basic LSP features, there are some extension commands which you can
2019-03-20 04:21:55 -05:00
invoke via < kbd > Ctrl+Shift+P</ kbd > or bind to a shortcut. See [./features.md ](./features.md )
2019-03-20 04:17:12 -05:00
for details.
2019-01-13 06:04:05 -06:00
2019-07-29 04:14:11 -05:00
For updates, pull the latest changes from the master branch, run `cargo install-ra` again, and **restart** VS Code instance.
2019-09-18 09:01:56 -05:00
See [microsoft/vscode#72308 ](https://github.com/microsoft/vscode/issues/72308 ) for why a full restart is needed.
2019-07-29 04:14:11 -05:00
2019-03-20 04:17:12 -05:00
### Settings
2019-01-13 06:04:05 -06:00
2019-03-20 04:17:12 -05:00
* `rust-analyzer.highlightingOn` : enables experimental syntax highlighting
* `rust-analyzer.showWorkspaceLoadedNotification` : to ease troubleshooting, a
notification is shown by default when a workspace is loaded
* `rust-analyzer.enableEnhancedTyping` : by default, rust-analyzer intercepts
2019-05-22 07:04:30 -05:00
`Enter` key to make it easier to continue comments. Note that it may conflict with VIM emulation plugin.
2019-03-20 04:17:12 -05:00
* `rust-analyzer.raLspServerPath` : path to `ra_lsp_server` executable
* `rust-analyzer.enableCargoWatchOnStartup` : prompt to install & enable `cargo
watch` for live error highlighting (note, this **does not** use rust-analyzer)
2019-08-06 06:34:28 -05:00
* `rust-analyzer.excludeGlobs` : a list of glob-patterns for exclusion (see globset [docs ](https://docs.rs/globset ) for syntax).
Note: glob patterns are applied to all Cargo packages and a rooted at a package root.
This is not very intuitive and a limitation of a current implementation.
2019-09-06 08:25:24 -05:00
* `rust-analyzer.useClientWatching` : use client provided file watching instead
of notify watching.
2019-09-25 03:55:18 -05:00
* `rust-analyzer.cargo-watch.command` : `cargo-watch` command. (e.g: `clippy` will run as `cargo watch -x clippy` )
* `rust-analyzer.cargo-watch.arguments` : cargo-watch check arguments.
2019-05-11 06:22:44 -05:00
(e.g: `--features="shumway,pdf"` will run as `cargo watch -x "check --features="shumway,pdf""` )
2019-03-20 04:17:12 -05:00
* `rust-analyzer.trace.server` : enables internal logging
2019-04-02 00:07:40 -05:00
* `rust-analyzer.trace.cargo-watch` : enables cargo-watch logging
2019-08-22 14:08:34 -05:00
* `RUST_SRC_PATH` : environment variable that overwrites the sysroot
2019-01-13 06:04:05 -06:00
2018-10-09 08:00:20 -05:00
2019-03-20 04:17:12 -05:00
## Emacs
2018-09-16 07:36:09 -05:00
2019-03-20 04:17:12 -05:00
Prerequisites:
2019-01-13 08:13:54 -06:00
2019-03-20 04:17:12 -05:00
`emacs-lsp` , `dash` and `ht` packages.
2019-01-13 08:13:54 -06:00
2019-03-20 04:17:12 -05:00
Installation:
2019-01-13 08:13:54 -06:00
2019-03-20 04:17:12 -05:00
* add
[ra-emacs-lsp.el ](https://github.com/rust-analyzer/rust-analyzer/blob/69ee5c9c5ef212f7911028c9ddf581559e6565c3/editors/emacs/ra-emacs-lsp.el )
to load path and require it in `init.el`
* run `lsp` in a rust buffer
2019-07-25 14:27:00 -05:00
* (Optionally) bind commands like `rust-analyzer-join-lines` or `rust-analyzer-extend-selection` to keys, and enable `rust-analyzer-inlay-hints-mode` to get inline type hints
2019-04-19 04:50:01 -05:00
2019-05-25 14:24:47 -05:00
## Vim and NeoVim
* Install coc.nvim by following the instructions at [coc.nvim]
2019-06-18 09:25:59 -05:00
- You will need nodejs installed.
- You may want to include some of the sample vim configurations [from here][coc-vim-conf]
- Note that if you use a plugin manager other than `vim-plug` , you may need to manually
checkout the `release` branch wherever your plugin manager cloned it. Otherwise you will
get errors about a missing javascript file.
2019-09-08 21:32:15 -05:00
* Run `:CocInstall coc-rust-analyzer` to install [coc-rust-analyzer], this extension implemented _most_ of the features supported in the VSCode extension:
2019-09-03 03:02:32 -05:00
- same configurations as VSCode extension, `rust-analyzer.raLspServerPath` , `rust-analyzer.enableCargoWatchOnStartup` etc.
- same commands too, `rust-analyzer.analyzerStatus` , `rust-analyzer.startCargoWatch` etc.
2019-09-08 23:58:44 -05:00
- highlighting and inlay_hints are not implemented yet
2019-05-25 14:24:47 -05:00
[coc.nvim]: https://github.com/neoclide/coc.nvim
2019-06-18 09:25:59 -05:00
[coc-vim-conf]: https://github.com/neoclide/coc.nvim/#example-vim-configuration
2019-09-08 21:32:15 -05:00
[coc-rust-analyzer]: https://github.com/fannheyward/coc-rust-analyzer
2019-05-25 14:24:47 -05:00
2019-04-19 04:50:01 -05:00
## Sublime Text 3
Prequisites:
`LSP` package.
Installation:
* Invoke the command palette with < kbd > Ctrl+Shift+P</ kbd >
* Type `LSP Settings` to open the LSP preferences editor
* Add the following LSP client definition to your settings:
```json
"rust-analyzer": {
2019-09-10 20:50:08 -05:00
"command": ["ra_lsp_server"],
2019-04-19 04:50:01 -05:00
"languageId": "rust",
"scopes": ["source.rust"],
"syntaxes": [
"Packages/Rust/Rust.sublime-syntax",
"Packages/Rust Enhanced/RustEnhanced.sublime-syntax"
]
}
```
* 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)
2019-09-10 20:50:08 -05:00
* 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` .