diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-12-13 20:36:31 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-12-13 20:36:31 +0100 |
commit | 4fbfb149d3edcfe18b7b008c3a4a8e7523d4b811 (patch) | |
tree | ec9725f5c5e8f4052fe26d7cb65f321b69b3a91d /lib/directories.zsh | |
parent | 5e950d4fa00f1dc631bd7fcc5fc975148c28d357 (diff) | |
download | zsh-4fbfb149d3edcfe18b7b008c3a4a8e7523d4b811.tar.gz zsh-4fbfb149d3edcfe18b7b008c3a4a8e7523d4b811.tar.bz2 zsh-4fbfb149d3edcfe18b7b008c3a4a8e7523d4b811.zip |
Add back the `-` alias to go to the previous directory
The alias was removed in #3564. A couple of users were using
it, so I'm adding it back.
Diffstat (limited to 'lib/directories.zsh')
-rw-r--r-- | lib/directories.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/directories.zsh b/lib/directories.zsh index 3bffa9fd9..a50a692c8 100644 --- a/lib/directories.zsh +++ b/lib/directories.zsh @@ -8,6 +8,7 @@ alias -g ....='../../..' alias -g .....='../../../..' alias -g ......='../../../../..' +alias -- -='cd -' alias 1='cd -' alias 2='cd -2' alias 3='cd -3' |