diff --git a/Examples-(fish).md b/Examples-(fish).md index b2f5a73..142db60 100644 --- a/Examples-(fish).md +++ b/Examples-(fish).md @@ -49,7 +49,7 @@ The following can replace fish completion menu with fzf. Because of a [fish bug] function fzf-complete -d 'fzf completion and print selection back to commandline' set -l complist (complete -C(commandline -c)) set -l result - string join -- \n $complist | sort | fzf -m --select-1 --exit-0 --header '(commandline)' | cut -f1 | while read -l r; set result $result $r; end + string join -- \n $complist | sort | eval (__fzfcmd) -m --select-1 --exit-0 --header '(commandline)' | cut -f1 | while read -l r; set result $result $r; end set prefix (string sub -s 1 -l 1 -- (commandline -t)) for i in (seq (count $result))