X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/0ac781d56a5e665fb41e7193ba66ee8a74959491..9b4e27af9824d6cd72ef39db5fc4860d91456909:/.zsh/zshrc/30_aliases diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 0797598..120640e 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -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 @@ -140,4 +141,12 @@ alias btd='btdownloadheadless' alias mdtest='swaks -s localhost -t' +if whence devtodo >/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