From: Simon Ruderich Date: Wed, 29 Aug 2012 16:22:51 +0000 (+0200) Subject: zsh/rc: Remove a few indirections in aliases. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=73a96774af64bf022d7072d6e04700844edac9f9;p=config%2Fdotfiles.git zsh/rc: Remove a few indirections in aliases. --- diff --git a/zsh/rc b/zsh/rc index e34d905..e630ed4 100644 --- a/zsh/rc +++ b/zsh/rc @@ -627,8 +627,8 @@ alias sudo='sudo ' # Global aliases for often used commands in the command line. alias -g E='2>&1' -alias -g L='E | less' -alias -g D='E | colordiff L' +alias -g L='2>&1 | less' +alias -g D='2>&1 | colordiff | less' alias -g G='| grep' alias -g S='| sort' alias -g U='| uniq'