mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Add bare dot aliases for backing out of directories.
This commit is contained in:
parent
26866cf4be
commit
2b6116039b
1 changed files with 3 additions and 0 deletions
|
|
@ -4,6 +4,9 @@ setopt auto_pushd
|
|||
setopt pushd_ignore_dups
|
||||
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../..'
|
||||
alias ....='cd ../../..'
|
||||
alias .....='cd ../../../..'
|
||||
alias cd..='cd ..'
|
||||
alias cd...='cd ../..'
|
||||
alias cd....='cd ../../..'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue