add -follow to find to be consistent to other file commands
This commit is contained in:
parent
cda5f76f1d
commit
679b59ca34
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue