kelleyma49 / PSFzf

A PowerShell wrapper around the fuzzy finder fzf
MIT License
752 stars 35 forks source link

When using fd, Alt+c only shows directories containing a dot (.) #175

Open fschoenm opened 1 year ago

fschoenm commented 1 year ago

I'm using the following configuration (with fd installed):

Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+t' -PSReadlineChordReverseHistory 'Ctrl+r' -PSReadlineChordSetLocation 'Alt+c' -PSReadlineChordReverseHistoryArgs 'Alt+a'
Set-PsFzfOption -EnableFd

When pressing Alt+c, the following fd command is triggered:

"C:\Users\fschoenm\scoop\apps\fd\current\fd.exe"  --color always . --full-path . --fixed-strings --type directory

However, using the --fixed-strings parameter forces fd to only return directories that literally contain a dot (.), i.e. most directories are not shown.

Pagliacii commented 1 year ago

Same issue