From feb47cbf7fce6a11b7c3c239e5e11f5a1f0f3ecb Mon Sep 17 00:00:00 2001 From: George Christou Date: Fri, 2 Feb 2018 15:34:48 +0000 Subject: [PATCH] website: Include `fish` as a supported shell (#3895) --- website/source/intro/getting-started/install.html.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/source/intro/getting-started/install.html.md b/website/source/intro/getting-started/install.html.md index bf46f0f30b..a7ef2657ee 100644 --- a/website/source/intro/getting-started/install.html.md +++ b/website/source/intro/getting-started/install.html.md @@ -72,7 +72,7 @@ Otherwise, Vault is installed and ready to go! Vault also includes command-line completion for subcommands, flags, and path arguments where supported. To install command-line completion, you must be using -Bash or ZSH. Unfortunately other shells are not supported at this time. +Bash, ZSH or Fish. Unfortunately other shells are not supported at this time. To install completions, run: @@ -80,9 +80,9 @@ To install completions, run: $ vault -autocomplete-install ``` -This will install the helpers in your `~/.bashrc` or `~/.zshrc` automatically. -Then restart your terminal or reload your shell: - +This will automatically install the helpers in your `~/.bashrc` or `~/.zshrc`, or to +`~/.config/fish/completions/vault.fish` for Fish users. Then restart your terminal +or reload your shell: ```sh $ exec $SHELL ```