Skip to content
Snippets Groups Projects
Commit 5a17a632 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

[zsh-completion] "\find" to bypass alias

parent 2b8e4453
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ _fzf_path_completion() {
leftover=${base/#"$dir"}
leftover=${leftover/#\/}
[ "$dir" = './' ] && dir=''
matches=$(find -L ${~dir}* ${=find_opts} 2> /dev/null | ${=fzf} ${=FZF_COMPLETION_OPTS} ${=fzf_opts} -q "$leftover" | while read item; do
matches=$(\find -L ${~dir}* ${=find_opts} 2> /dev/null | ${=fzf} ${=FZF_COMPLETION_OPTS} ${=fzf_opts} -q "$leftover" | while read item; do
printf "%q$suffix " "$item"
done)
matches=${matches% }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment