Closed
Description
Assuming you have at least one dotfile in your homedir:
1: No hidden files
cd ~
ls **<TAB>
2: Leading ./
and hidden files
cd ~
ls .**<TAB>
There is a ./
safeguard ( [ "$dir" = './' ] && dir=''
) which obviously doesn't catch .**<TAB>
.
To fix both issues I'd suggest adding three envs (FZF_COMP_PATH_COMMAND, FZF_COMP_DIR_COMMAND and FZF_COMP_FILE_COMMAND) to allow the same flexibility FZF_DEFAULT_COMMAND gives us.
(using ag or locate instead of find)
or
Adding these 3 options to fzf itself while also adding the above env vars but removing the need to pipe anything to it.
or
just fixing case 1 by not using "$dir"*
and stripping the leading './'