mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-03 15:40:27 +00:00
Move completions/fisher.fish creation to the top of the function.
This commit is contained in:
parent
e753630832
commit
f6c702d30b
14
fisher.fish
14
fisher.fish
@ -52,6 +52,13 @@ function fisher
|
||||
return 1
|
||||
end
|
||||
|
||||
set -l completions "$fish_config/completions/fisher.fish"
|
||||
|
||||
if test ! -e "$completions"
|
||||
__fisher_completions_write > "$completions"
|
||||
source "$completions"
|
||||
end
|
||||
|
||||
set -g __fisher_stdout /dev/stdout
|
||||
set -g __fisher_stderr /dev/stderr
|
||||
|
||||
@ -266,13 +273,6 @@ function fisher
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
set -l completions "$fish_config/completions/fisher.fish"
|
||||
|
||||
if test ! -e "$completions"
|
||||
__fisher_completions_write > "$completions"
|
||||
source "$completions"
|
||||
end
|
||||
end
|
||||
|
||||
function __fisher_install
|
||||
|
Loading…
Reference in New Issue
Block a user