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