]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Add shortcut alias for clear.
authorSimon Ruderich <simon@ruderich.org>
Thu, 11 Jun 2009 13:58:09 +0000 (15:58 +0200)
committerSimon Ruderich <simon@ruderich.org>
Thu, 11 Jun 2009 13:58:09 +0000 (15:58 +0200)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 3e3be66c705cc1791e4961ffdb8442f8b434f2fd..77b9f3cd047ad6907c786c7bc5a2e1245b406bd8 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -195,7 +195,7 @@ if [[ $TERM == screen* || $TERM == xterm* ]]; then
         # Ignore often used commands which are only running for a very short
         # time. This prevents a "blinking" name when it's changed to "cd" for
         # example and then some milliseconds later back to "zsh".
-        [[ $program_name == (cd*|ls|la|ll|clear) ]] && return
+        [[ $program_name == (cd*|ls|la|ll|clear|c) ]] && return
 
         # Change my shortcuts so the real name of the program is displayed.
         case $program_name in
@@ -365,6 +365,7 @@ alias -g ....='../../..'
 alias -g .....='../../../..'
 
 # Shortcuts for often used programs.
+alias c='clear'
 alias e='elinks'
 alias g='git'
 alias m='mutt'