X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=96b45e4e6b43b0500a4624916a774452a4a852b9;hb=8f24a1138ad378038239e8d0cb9619864f7ca026;hp=065ab1f45cca89228eb76f59cb3a473f41d8ee2d;hpb=e865b3e56f6035cfbee994b82b1d59f0adc41284;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index 065ab1f..96b45e4 100644 --- a/zsh/rc +++ b/zsh/rc @@ -16,9 +16,6 @@ # along with this file. If not, see . -source_debug '. ~/.zsh/rc' - - # Warn when creating global variables from inside a function. Needs to be set # before declaring a function. setopt warn_create_global @@ -829,6 +826,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' @@ -879,14 +879,14 @@ if (( $+commands[xpdf] )); then command xpdf "$@" 2>/dev/null & disown %command } - compdef _xpdf pdf + compdef pdf=xpdf elif (( $+commands[zathura] )); then pdf() { command zathura "$@" 2>/dev/null & disown %command } # No completion for zathura yet. - compdef _xpdf pdf + compdef pdf=xpdf fi # Better viewer for info pages .. just pipe everything into less. @@ -1068,7 +1068,4 @@ zshrc_restart_precmd() { } precmd_functions+=(zshrc_restart_precmd) - -source_debug '. ~/.zsh/rc (done)' - # vim: ft=zsh