]> git.madduck.net Git - etc/zsh.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

show todo items on entry to dir
authormartin f. krafft <madduck@madduck.net>
Sun, 29 Jun 2008 11:23:26 +0000 (13:23 +0200)
committermartin f. krafft <madduck@madduck.net>
Sun, 29 Jun 2008 11:23:26 +0000 (13:23 +0200)
.zsh/zshrc/30_aliases

index 810b799f39a73ba7de63543268a1080b49189fc8..67d8351431f400ae3050c003c5c2b8ace6148d89 100644 (file)
@@ -141,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