From: Simon Ruderich Date: Wed, 29 Aug 2012 16:31:46 +0000 (+0200) Subject: zsh/rc: Add global alias LS (2>&1 | less -S). X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=7e88a2ee8aba91e34b2b1c65aa9631b65e24d375;p=config%2Fdotfiles.git zsh/rc: Add global alias LS (2>&1 | less -S). --- diff --git a/zsh/rc b/zsh/rc index 92aebe7..e3434ef 100644 --- a/zsh/rc +++ b/zsh/rc @@ -628,6 +628,7 @@ alias sudo='sudo ' # Global aliases for often used redirections. alias -g E='2>&1' alias -g L='2>&1 | less' +alias -g LS='2>&1 | less -S' # -S prevents wrapping of long lines alias -g D='2>&1 | colordiff | less' # Global aliases for often used commands in the command line. alias -g A='| awk'