]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh: Add new global alias E which performs 2>&1.
authorSimon Ruderich <simon@ruderich.org>
Wed, 8 Apr 2009 12:11:25 +0000 (14:11 +0200)
committerSimon Ruderich <simon@ruderich.org>
Wed, 8 Apr 2009 12:11:25 +0000 (14:11 +0200)
Not sure how I came up with this name but I like it.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 69a5d4c684bbf8617efec0d4f7a62903e6d8f45c..04acf1e0bb453013d5edf101eb1cf3e27f2164dc 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -303,10 +303,13 @@ zstyle ':completion:*:(hg|git)*:*' ignore-line yes
 # Make sure aliases are expanded when using sudo.
 alias sudo='sudo '
 
+# Redirect stderr to stdout.
+alias -g E='2>&1'
+
 # Simplify calls to less, automatically redirects all output.
-alias -g L='2>&1 | less'
+alias -g L='E | less'
 # Simplify calls to colordiff, output is also piped through less.
-alias -g D='2>&1 | colordiff L'
+alias -g D='E | colordiff L'
 # Simplify calls to grep.
 alias -g G='| grep'