Fix bug where main completions were getting overwritten.

This commit is contained in:
Jorge Bucaran 2016-04-30 02:34:37 +09:00
parent f9a954648d
commit 7d27777aca
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -1,5 +1,5 @@
function fisher
set -g fisher_version "2.3.1"
set -g fisher_version "2.3.2"
set -g fisher_spinners ⠋ ⠙ ⠹ ⠸ ⠼ ⠴ ⠦ ⠧ ⠇ ⠏
function __fisher_show_spinner
@ -253,6 +253,8 @@ function fisher
complete -c fisher --erase
source "$completions"
set -l config $fisher_config/*
set -l cache $fisher_cache/*
@ -299,7 +301,7 @@ function fisher
__fisher_list_remote_complete
source "$completions"
return 0
end