]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/zshrc/30_aliases
stop lsing directories
[zsh.git] / .zsh / zshrc / 30_aliases
index b09f4b1cb55437b943637203877fa248c5958742..fa973784e0b045ec92f79f2e86cd20f3238c9fee 100644 (file)
@@ -47,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
 
@@ -197,12 +197,4 @@ compdef asc=ssh
 
 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"
-  }
-  [[ -z ${(M)chpwd_functions:#_devtodo_on_chpwd} ]] && chpwd_functions+=_devtodo_on_chpwd
-fi
-
 # vim:ft=zsh