For PowerShell there is Jump-Location and Z. You might also want to check out Go.
Answer from Lars Truijens on Stack OverflowFor PowerShell there is Jump-Location and Z. You might also want to check out Go.
I had written cdposh and poshmarks which might be useful for you.
cdposh lets you specify environment variable cdpath and lets you switch directly to a directory on the cdpath (much like path for executables)
poshmarks lets you bookmark and quickly go to directories.
I will see if I can implement z for Powershell
Update: A very early implementation of z for Powershell - posz
Z - Jump to directories that you actually use.
Z, Autojump or Fasd?
How to make "smarter jump to recent folder"
Z – Jump around
Videos
I'm searching for a directory jump tool in a CL. Currently I use the wd plugin by oh-my-zsh, but that are bookmarks. I would like to have more a functionality like z, which remember the directories I used most and is able to autocomplete and filter them. Going further, I found autojump and fasd with similar functionality. The interesting part of fasd for me, is the so called "frecent" approach, that sounds effective. But otherwise it has much more functions, I'm not interested in, cause I've better solutions for them. What none of all them seems to solve, is to be an extended clone of cd itself. So I can change directories as normal with the extra feature, that if the directory I'm typing does not exist as direct path (relative or absolute), the special feature is used. Does this make sense?
What are your experiences with such tools? Can you suggest any of them strongly? Did you have used multiple of them already? Thanks for feedback!
Hi,
Really hope someone is able to help me.
I've enabled cdr functionality (https://github.com/zsh-users/zsh/blob/master/Functions/Chpwd/cdr) and this works as expected. But I can't get accustomed to the way it works. I've tried to combine it with 'fzf-tab' but it is still not quite as I like.
So this got me thinking. I've already got a file which contains recently visited folders, how can I jump to a folder based on a entry in that file? <CTRL>+p should bring up menu selection and fuzzy search for folder. Basically, similar to <CTRL>+r behavior when using 'fzf'.
I've already tried 'autojump', 'fasd', 'zsh-z', ... but neither suits me.