From 7b92cd93723b1da0fe3c2c54e9b87cdb2b8c0979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Sun, 5 Feb 2017 16:37:05 +0100 Subject: [PATCH] Fix fish completion instructions --- etc/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/etc/README.md b/etc/README.md index 38ee0c956..33905e666 100644 --- a/etc/README.md +++ b/etc/README.md @@ -38,9 +38,10 @@ autoload -U compinit && compinit ## fish -Copy the file `/etc/hub.fish_completion` from the location where you downloaded `hub` to the folder `~/.config/fish/completions/` and rename it to `hub.fish`: +Copy the file `/etc/hub.fish_completion` from the location where you downloaded +`hub` to the folder `~/.config/fish/completions/` and rename it to `hub.fish`: ```sh -cp /path/to/etc/hub.fish_completion ~/.config/fish/completions/ -mv ~/.config/fish/completions/hub.fish_completion ~/.config/fish/completions/hub.fish +mkdir -p ~/.config/fish/completions +cp /path/to/etc/hub.fish_completion ~/.config/fish/completions/hub.fish ```