Switch to cd / pd / vd

pull/212/head
Jason Benterou 2013-06-03 12:04:52 -07:00
parent ec4dc7b303
commit fcd79d9009
1 changed files with 9 additions and 4 deletions

View File

@ -1,11 +1,16 @@
# cd becomes pushd # cd becomes pushd
# #
# Add to stack with: cd /path/to/directory # cd : Push directory to stack and change directory
# Delete current dir from stack with: popd # ex $ cd /path/to/directory
# Show stack with: dirs #
# pd : Pop directory off stack and change to previous directory
# ex $ pd
#
# vd : View directory stack
cite about-plugin cite about-plugin
about-plugin 'always use pushd - cd becomes pushd' about-plugin 'always use pushd - cd becomes pushd'
alias cd='pushd' alias cd='pushd'
alias dirs='dirs -v' alias pd='popd'
alias vd='dirs -v'