-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
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
Trying to implement a go back and go forward #839
Comments
Just
|
I want to jump forward, then forward again if I want to, like a stack, push and pop the directories... Go back and forth. |
If you need this to work for multiple steps (not just toggling between the two last directories), |
+1 to this request! Would love built in support for # ~/.bashrc
alias pushz='pushd . && z'
# Then you can run as follows:
pushz mydir |
Hi, I am trying to implement go back and go forward between current working directory, I am trying to replicate vim's +o and +i (which helps me jump and forth between files)... I am using
z -
to go to the last working directory, but there is no provision to go forward to where I came from using something likez +
maybe....The text was updated successfully, but these errors were encountered: