JannesMeyer / z.ps

PowerShell utility to jump to your favorite directories
100 stars 5 forks source link

Very cool - have you looked at adding more fasd functionality? #3

Open idvorkin opened 6 years ago

idvorkin commented 6 years ago

Z is awesome, and made the switch to powershell a reality for me. Now, I discovered FASD, and I love it, any chance we can more of that functionality in powershell?

https://github.com/clvv/fasd/blob/master/fasd

JannesMeyer commented 6 years ago

Thanks for the suggestion! I was not aware of fasd until now. It looks quite useful!

I might add new functionality to z.ps at some point, but I have to admit that I am stretched a bit thin for the foreseeable future.

For now you might be able to get an alternative working by using ripgrep and fzf which both work on windows as well.

Open file in vim:

vim $(rg --files | fzf)

This does not record any "frecency" data, though. It's just a fuzzy file finder.

idvorkin commented 6 years ago

rg and fzf look great I'll check them out! If you're vimming, check out denite (https://github.com/Shougo/denite.nvim) as well.