You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently fzf-tab cannot search for dotfiles in their results, while under the same case the default completion would do. An screenshot for describing this visually:
This behavior is specifically undesirable when user would like to first see the directories under current path and deside whether or not navigate one level back the directories:
Describe the solution you'd like
Adding dotfiles in the search prompty -- an example would be seeing both dir{1,2} and ., .. in my last screenshot above.
Describe alternatives you've considered junegunn/fzf#634 might be related, but cannot get it to work with the suggested configuration.
Having the issue solved / adding this feature could largely improve the experience. And from my own perspective, this is the only thing stop me using fzf-tab as a real file explorer :)
The text was updated successfully, but these errors were encountered:
To list all hidden files, you can use glob_dots option: setopt glob_dots
To list both . and .., you can use special-dirs tag: zstyle ':completion:*' special-dirs true
Thanks for your quick reply! But in my case it does not really works:
In addition to these two settings, I tried the suggestion in #65 (comment), and it indeed listed hidden files and directories. And I let _cd to find . and .. by doing sharkdp/fd#364 (comment)
_cd() {
local dirs=($(echo ".";echo".."; fd --hidden --follow --type=d))
compadd -a -f dirs
}
But I cannot continuous complete after doing this.
Is your feature request related to a problem? Please describe.
Currently fzf-tab cannot search for dotfiles in their results, while under the same case the default completion would do. An screenshot for describing this visually:
This behavior is specifically undesirable when user would like to first see the directories under current path and deside whether or not navigate one level back the directories:
Describe the solution you'd like
Adding dotfiles in the search prompty -- an example would be seeing both
dir{1,2}
and.
,..
in my last screenshot above.Describe alternatives you've considered
junegunn/fzf#634 might be related, but cannot get it to work with the suggested configuration.
Having the issue solved / adding this feature could largely improve the experience. And from my own perspective, this is the only thing stop me using fzf-tab as a real file explorer :)
The text was updated successfully, but these errors were encountered: