X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=04c99f2ed673da450287f4572a182579f5887b0d;hb=a87cb2b0686687f275c77507f96dbed06c08cba3;hp=ae2a92d3d4d287aef31368b6c2ba3c20ad5aaf9a;hpb=affb82dea5fa3f866774437e21cf2ff443923615;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index ae2a92d..04c99f2 100644 --- a/zsh/rc +++ b/zsh/rc @@ -78,6 +78,9 @@ setopt extendedglob # pressing twice). setopt ignoreeof +# Also display PID when suspending a process. +setopt longlistjobs + # KEY BINDINGS @@ -826,6 +829,9 @@ 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. alias -g A='| awk' +alias -g A1="| awk '{ print \$1 }'" +alias -g A2="| awk '{ print \$2 }'" +alias -g A3="| awk '{ print \$3 }'" alias -g G='| grep' alias -g H='| head' alias -g P='| perl'