X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/0ac781d56a5e665fb41e7193ba66ee8a74959491..39c1e2a1224cfb703fa3e3cd2909821013976bc5:/.zsh/zshrc/30_aliases diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 0797598..3bc9fbc 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -5,7 +5,7 @@ # Copyright © 1994–2008 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # -# Source repository: http://git.madduck.net/v/etc/zsh.git +# Source repository: git://git.madduck.net/etc/zsh.git # alias mv='nocorrect mv' @@ -43,7 +43,8 @@ alias lart='ls -lart' # List only directories and symbolic links that point to directories alias lsd='ll -d *(-/DN)' -cd () { builtin cd "$@" && lrt } +alias lscontext=ll +cd () { __CHPWD_RUN_FIRST=lscontext && builtin cd "$@" && unset __CHPWD_RUN_FIRST } #_cd_l() { ll } #chpwd_functions+=_cd_l @@ -129,6 +130,10 @@ 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 } 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" + } + chpwd_functions+=_devtodo_on_chpwd +fi + # vim:ft=zsh