We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I call 'Invoke-FuzzySetLocation', the 'fzf' only list files, instead of directories, making it impossible to change the Location!
OS: Windows x64 Terminal: PowerShell 7.3.6 PSFzf: 2.5.16
Thanks.
The text was updated successfully, but these errors were encountered:
I found the problem:
I change this code:
try { if ([string]::IsNullOrWhiteSpace($env:FZF_DEFAULT_COMMAND)) { Get-ChildItem $Directory -Recurse -ErrorAction Ignore | Where-Object { $_.PSIsContainer } | Invoke-Fzf | ForEach-Object { $result = $_ } } else { Invoke-Fzf | ForEach-Object { $result = $_ } } } catch { }
For this:
try { Get-ChildItem $Directory -Recurse -ErrorAction Ignore | Where-Object { $_.PSIsContainer } | Invoke-Fzf | ForEach-Object { $result = $_ } } catch { }
Sorry, something went wrong.
Don't use FZF_DEFAULT_COMMAND
5e03b07
- Invoke-FuzzySetLocation no longer uses FZF_DEFAULT_COMMAND to ensure proper directory selection - Fixes #229
Don't use FZF_DEFAULT_COMMAND (#233)
ae331c9
Successfully merging a pull request may close this issue.
When I call 'Invoke-FuzzySetLocation', the 'fzf' only list files, instead of directories, making it impossible to change the Location!
OS: Windows x64
Terminal: PowerShell 7.3.6
PSFzf: 2.5.16
Thanks.
The text was updated successfully, but these errors were encountered: