kelleyma49 / PSFzf

A PowerShell wrapper around the fuzzy finder fzf
MIT License
787 stars 34 forks source link

Replace $pwd.Path with $pwd.ProviderPath #98

Closed belotn closed 2 years ago

belotn commented 2 years ago

Hello,

Issue Request to correct problem when psFZF is invoke from networkshare

mattcargile commented 2 years ago

If changed like this, I think it would break registry paths. Here is an toy example.

pushd HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\; cd ( $pwd.ProviderPath ); popd

EDIT: My fault. I didn't read all the code. I'm just not exploring this module and haven't used it. I was just exploring how it works with all the other modules I have. Sorry. Thanks for this fix! I will definitely implement it manually in my future install!

kelleyma49 commented 2 years ago

Thank you for the fix, @belotn !