Skip to content

Commit 923c3a8

Browse files
committed
[bash] Fix $FZF_COMPLETION_{DIR,PATH}_OPTS to support non-trivial arguments
This used to fail with 'unknown option: World>' export FZF_COMPLETION_PATH_OPTS="--prompt 'Hello World> '"
1 parent 779e3cc commit 923c3a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

shell/completion.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,12 @@ __fzf_generic_path_completion() {
311311
else
312312
if [[ $1 =~ dir ]]; then
313313
walker=dir,follow
314-
rest=${FZF_COMPLETION_DIR_OPTS-}
314+
eval "rest=(${FZF_COMPLETION_DIR_OPTS-})"
315315
else
316316
walker=file,dir,follow,hidden
317-
rest=${FZF_COMPLETION_PATH_OPTS-}
317+
eval "rest=(${FZF_COMPLETION_PATH_OPTS-})"
318318
fi
319-
__fzf_comprun "$4" -q "$leftover" --walker "$walker" --walker-root="$dir" $rest
319+
__fzf_comprun "$4" -q "$leftover" --walker "$walker" --walker-root="$dir" "${rest[@]}"
320320
fi | while read -r item; do
321321
printf "%q " "${item%$3}$3"
322322
done

0 commit comments

Comments
 (0)