From 125ed8cf9381a0502741c0c74ca4ed253569853a Mon Sep 17 00:00:00 2001 From: Adrian Ho Date: Fri, 3 Jul 2020 20:24:50 +0800 Subject: [PATCH] Update Shell-Completion.md --- docs/Shell-Completion.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Shell-Completion.md b/docs/Shell-Completion.md index 7d08471ace..4ae778f446 100644 --- a/docs/Shell-Completion.md +++ b/docs/Shell-Completion.md @@ -60,10 +60,10 @@ If your `fish` is from somewhere else, add the following to your `~/.config/fish ```sh if test -d (brew --prefix)"/share/fish/completions" - set -g -x fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions end if test -d (brew --prefix)"/share/fish/vendor_completions.d" - set -g -x fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d end ```