Skip to content

Commit 3439f2b

Browse files
committed
Reversing incorrect behavior
1 parent 7c45371 commit 3439f2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shell/completion.fish

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function fzf_completion_setup
2626
$FZF_COMPLETION_OPTS $argv[2..-1] --accept-nth=1)
2727
set -- result (eval complete -C \"$argv[1]\" \| column -t -s \\t \| (__fzfcmd))
2828
else
29-
set -lx -- FZF_DEFAULT_OPTS (__fzf_defaults --reverse --nth=1 --color=fg:dim,nth:regular \
29+
set -lx -- FZF_DEFAULT_OPTS (__fzf_defaults "--reverse --nth=1 --color=fg:dim,nth:regular" \
3030
$FZF_COMPLETION_OPTS $argv[2..-1] --accept-nth=1)
3131
set -- result (eval complete -C \"$argv[1]\" \| (__fzfcmd))
3232
end
@@ -43,7 +43,7 @@ function fzf_completion_setup
4343
set -l -- tail " "
4444
4545
# Set fzf options
46-
set -lx -- FZF_DEFAULT_OPTS (__fzf_defaults --reverse --scheme=path $FZF_COMPLETION_OPTS --print0)
46+
set -lx -- FZF_DEFAULT_OPTS (__fzf_defaults "--reverse --scheme=path" $FZF_COMPLETION_OPTS --print0)
4747
set -lx FZF_DEFAULT_COMMAND
4848
set -lx FZF_DEFAULT_OPTS_FILE
4949

0 commit comments

Comments
 (0)