X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.zsh%2Fzshrc%2F30_aliases;h=522fd4ad021e2f60a894d6c4089f309cc394b4ff;hb=929a2738768030f0e46f3c13a26d9cde7cd38c62;hp=982ddbb3f5bc49be168efd5bd8165c48aa3bf7f5;hpb=29ff3db6dd936515eef1d15b34a42b6ffca4f4a5;p=zsh.git diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 982ddbb..522fd4a 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -1,3 +1,4 @@ +# -*- mode: sh -*- # zshrc/30_aliases # # Defines command shortcuts @@ -46,7 +47,7 @@ alias lart='ls -lart' alias lsd='ll -d *(-/DN)' alias lscontext=ls -cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST } +#cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST } #_cd_l() { ll } #chpwd_functions+=_cd_l @@ -71,8 +72,16 @@ alias ftp=lftp alias mbug='bts show --mbox' alias bug='BROWSER=www-browser bts show' -# handy documentation lookup on Debian -# from http://www.michael-prokop.at/computer/config/.zshrc +edalias() { + [[ -z "$1" ]] && { echo "Usage: edalias " ; return 1 } || vared aliases'[$1]' ; +} +compdef _aliases edalias + +edfunc() { + [[ -z "$1" ]] && { echo "Usage: edfunc " ; return 1 } || zed -f "$1" ; +} +compdef _functions edfunc + doc() { cd /usr/share/doc/$1 } compdef '_files -W /usr/share/doc -/' doc @@ -123,6 +132,13 @@ compdef _pids of function psgrep() { ps aux | grep "[${1[1]}]${1[2,-1]}" } +alias rw-='chmod 600' +alias rwx='chmod 700' +alias r--='chmod 644' +alias r-x='chmod 755' +alias r-s='chmod 2755' +alias rws='chmod 2775' + alias bofh='fortune bofh-excuses' autoload -U baseconv @@ -161,12 +177,14 @@ unset _LANGUAGES alias dpkg-buildpackage="dpkg-buildpackage -k$DEBKEYID -rfakeroot" -bugsub() { echo X-debbugs-autosubscribe: madduck | sendmail -f $DEBEMAIL ${1:?No bug number}-subscribe@bugs.debian.org } +bugsub() { echo X-debbugs-autosubscribe: don | sendmail -f $DEBEMAIL ${1:?No bug number}-subscribe@bugs.debian.org } bugunsub() { sendmail -f $DEBEMAIL ${1:?No bug number}-unsubscribe@bugs.debian.org /dev/null; then - _devtodo_on_chpwd() { - local out; out="$(devtodo)" - [[ -n $out ]] && print "todo:\n$out" - } - [[ -z ${(M)chpwd_functions:#_devtodo_on_chpwd} ]] && chpwd_functions+=_devtodo_on_chpwd -fi +pdfextract() { + local i=$1 + local o=$2 + shift 2 + pdftk "$i" cat "${@:-1-end}" output "${o%.pdf}.pdf" +} +compdef _files pdfextract + +gittestfile() { + local annex; annex=false + local file + + case "$1" in + (-a) annex=true;; + (*) + if [ -n "$file" ]; then + echo >&2 "E: filename already given" + return 1 + fi + file="$1";; + esac + + if [ -z "$file" ]; then + file=$(TMPDIR=${PWD} tempfile -ptest. -s.txt) + fi + + echo "Test file created $(date)" >| $file + + case "$annex" in + true) + git annex add $file + git commit -m"Add test file $file to annex" + ;; + false) + git add $file + git commit -m"Add test file $file" + ;; + esac +} # vim:ft=zsh