Skip to content

Autocompletion for hidden files. [bash] #456

Closed
@frizinak

Description

@frizinak

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 './'

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions