From 35aa3c13311e12ff3375f2eef561562244433ee8 Mon Sep 17 00:00:00 2001 From: jotaro-sama <36264038+jotaro-sama@users.noreply.github.com> Date: Thu, 10 Oct 2019 03:57:25 +0200 Subject: [PATCH 1/2] add readme for the rust plugin --- plugins/rust/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 plugins/rust/README.md diff --git a/plugins/rust/README.md b/plugins/rust/README.md new file mode 100644 index 000000000..7cc1ceb66 --- /dev/null +++ b/plugins/rust/README.md @@ -0,0 +1,15 @@ +# rust + +This plugin adds completion for [`rustc`](https://doc.rust-lang.org/rustc/index.html), the compiler for the Rust programming language. + +To use it, add `rust` to the plugins array in your zshrc file: + +```zsh +plugins=(... rust) +``` + +## Aliases + +| Command | Description | +|------------------|---------------------------------------------------------------------------------| +| `rustc` | Compiler for the Rust language | From bb97a9b3ecb809dc7f4f64713170e42b44853d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Thu, 10 Oct 2019 11:07:33 +0200 Subject: [PATCH 2/2] Delete alias section --- plugins/rust/README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plugins/rust/README.md b/plugins/rust/README.md index 7cc1ceb66..83d7d91ba 100644 --- a/plugins/rust/README.md +++ b/plugins/rust/README.md @@ -7,9 +7,3 @@ To use it, add `rust` to the plugins array in your zshrc file: ```zsh plugins=(... rust) ``` - -## Aliases - -| Command | Description | -|------------------|---------------------------------------------------------------------------------| -| `rustc` | Compiler for the Rust language |