From 7eebe3c1b46ca5a61ee883d50d2e9d84d7d40d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maria=20Jos=C3=A9=20Solano?= Date: Sat, 28 Oct 2023 18:14:04 -0700 Subject: [PATCH] fix(docs): update fish completions command --- 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 c595b4c77f..69f1e8e55a 100644 --- a/docs/Shell-Completion.md +++ b/docs/Shell-Completion.md @@ -72,10 +72,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 -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions + set -p fish_complete_path (brew --prefix)/share/fish/completions end if test -d (brew --prefix)"/share/fish/vendor_completions.d" - set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d + set -p fish_complete_path (brew --prefix)/share/fish/vendor_completions.d end ```