2015-06-10 16:44:30 +00:00
#+TITLE : Rust contribution layer for Spacemacs
[[file:img/rust.png ]]
2016-03-31 02:59:55 +00:00
* Table of Contents :TOC_4_gh:noexport:
- [[#description ][Description ]]
- [[#install ][Install ]]
- [[#layer ][Layer ]]
- [[#racer ][Racer ]]
- [[#cargo ][Cargo ]]
- [[#rustfmt ][Rustfmt ]]
- [[#key-bindings ][Key bindings ]]
2015-06-10 16:44:30 +00:00
* Description
2016-01-10 12:36:56 +00:00
This layer supports [[http://www.rust-lang.org/ ][Rust ]] development in Spacemacs.
2015-06-10 16:44:30 +00:00
2016-01-10 12:36:56 +00:00
It has auto-completion and navigation support through [[https://github.com/phildawes/racer ][Racer ]] and supports [[http://doc.crates.io/index.html ][Cargo ]].
2015-06-10 16:44:30 +00:00
* Install
** Layer
2016-01-06 05:21:55 +00:00
To use this configuration layer, add it to your =~/.spacemacs= . You will need to
add =rust= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
2016-01-10 12:36:56 +00:00
** Racer
You must install [[https://github.com/phildawes/racer ][Racer ]] to use this. Make sure the =racer= binary is available in
your =PATH= and to set the environment variable =RUST_SRC_PATH= , as described in
the [[https://github.com/phildawes/racer#installation ][installation instructions ]].
To enable auto-completion, ensure that the =auto-completion= layer is enabled.
2015-06-10 16:44:30 +00:00
** Cargo
2015-06-10 21:16:01 +00:00
[[http://doc.crates.io/index.html ][Cargo ]] is a project management command line tool for Rust. Installation
instructions can be found on the main page of [[http://doc.crates.io/index.html ][Cargo ]].
2015-06-10 16:44:30 +00:00
2016-01-11 14:43:22 +00:00
** Rustfmt
Format Rust code according to style guidelines using [[https://github.com/rust-lang-nursery/rustfmt ][rustfmt ]].
#+BEGIN_SRC sh
cargo install rustfmt
#+END_SRC
2016-02-17 13:37:27 +00:00
To enable automatic buffer formatting on save, set the variable =rust-format-on-save= to =t= .
2016-01-11 14:43:22 +00:00
2015-06-10 16:44:30 +00:00
* Key bindings
2016-08-07 15:37:12 +00:00
| Key Binding | Description |
|-------------+---------------------------------------------|
| ~SPC m =~ | reformat the buffer |
| ~SPC m c .~ | repeat the last Cargo command |
| ~SPC m c C~ | remove build artifacts with Cargo |
| ~SPC m c X~ | execute a project example with Cargo |
| ~SPC m c c~ | compile project with Cargo |
| ~SPC m c d~ | generate documentation with Cargo |
| ~SPC m c e~ | run benchmarks with Cargo |
| ~SPC m c f~ | run the current test with Cargo |
| ~SPC m c i~ | create a new project with Cargo (init) |
| ~SPC m c n~ | create a new project with Cargo (new) |
| ~SPC m c o~ | run all tests in current file with Cargo |
| ~SPC m c s~ | search for packages on crates.io with Cargo |
| ~SPC m c u~ | update dependencies with Cargo |
| ~SPC m c x~ | execute a project with Cargo |
| ~SPC m g g~ | jump to definition |
| ~SPC m t~ | run tests with Cargo |