]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
shell/aliases: Add some more aliases from zsh/rc.
authorSimon Ruderich <simon@ruderich.org>
Mon, 8 Mar 2010 17:30:11 +0000 (18:30 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 8 Mar 2010 17:30:11 +0000 (18:30 +0100)
In this case they are overwritten by better versions when zsh is used.

shell/aliases

index cb2af4b8c024a55b7fc35c63de2588d07fb827db..5484fc9aedf2ba358682978798efeb4bf49a880f 100644 (file)
@@ -67,6 +67,12 @@ ll() {
 }
 
 
+# Make going up directories simple.
+alias ..='cd ..'
+alias ...='cd ../..'
+alias ....='cd ../../..'
+alias .....='cd ../../../..'
+
 # I sometimes confuse editor and shell, print a warning to prevent I exit the
 # shell.
 alias :q='echo "This is not Vim!" >&2'