]> git.donarmstrong.com Git - zsh.git/blobdiff - .zsh/zshrc/30_aliases
display repo name in git string
[zsh.git] / .zsh / zshrc / 30_aliases
index 35767e205b0d7c1d165822530f1a255d80c93a75..fa973784e0b045ec92f79f2e86cd20f3238c9fee 100644 (file)
@@ -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
 
@@ -196,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