X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/d49ccb721ff0f7c5e0e6f95626f2e48cb6dc9582..437e7e13d05c6bc700bf25064a6d1a32ebc4b2c2:/.zsh/zshrc/30_aliases diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index e3e01ec..1f4634c 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -60,4 +60,30 @@ doc() { cd /usr/share/doc/$1 && ls } _doc() { _files -W /usr/share/doc -/ } compdef _doc doc +alias giti='git init && git add . && git commit -minitial\ checkin' + +alias t=tailf + +_d() { dict $* } +d() { _d $* | sensible-pager } +the() { d -d moby-thesaurus $* } +typeset -A _LANGUAGES +_LANGUAGES[en]=eng +_LANGUAGES[de]=deu +_LANGUAGES[es]=spa +_LANGUAGES[fr]=fra +_LANGUAGES[it]=ita +_LANGUAGES[lt]=lat +for l0 in ${(k)_LANGUAGES}; do + for l1 in ${(k)_LANGUAGES}; do + eval "_${l0}-${l1}() { _d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }" + eval "${l0}-${l1}() { d -d fd-${_LANGUAGES[$l0]}-${_LANGUAGES[$l1]} \$* }" + done +done +unset '_LANGUAGES[en]' +for l in ${(k)_LANGUAGES}; do + eval "${l}() { (_${l}-en \$*; _en-${l} \$*) | more }" +done +unset _LANGUAGES + # vim:ft=zsh