1
0
Fork 0

add -follow to find to be consistent to other file commands

This commit is contained in:
Andrey Orst 2018-10-12 20:29:12 +03:00
parent cda5f76f1d
commit 679b59ca34

View file

@ -21,7 +21,7 @@ Supported tools:
fd: ""fd""
Default arguments:
find: ""find -type f""
find: ""find -type f -follow""
ag: ""ag -l -f --hidden --one-device .""
rg: ""rg -L --hidden --files""
fd: ""fd --type f --follow""
@ -144,7 +144,7 @@ define-command -hidden fzf-file %{ evaluate-commands %sh{
fi
case $kak_opt_fzf_file_command in
find)
cmd="find -type f" ;;
cmd="find -type f -follow" ;;
ag)
cmd="ag -l -f --hidden --one-device . " ;;
rg)