]> git.donarmstrong.com Git - zsh.git/commitdiff
provide hook functions to iterate _functions arrays
authormartin f. krafft <madduck@madduck.net>
Tue, 6 May 2008 10:30:22 +0000 (11:30 +0100)
committermartin f. krafft <madduck@madduck.net>
Tue, 6 May 2008 10:30:22 +0000 (11:30 +0100)
.zsh/zshrc/99_hook_functions [new file with mode: 0644]

diff --git a/.zsh/zshrc/99_hook_functions b/.zsh/zshrc/99_hook_functions
new file mode 100644 (file)
index 0000000..afd992b
--- /dev/null
@@ -0,0 +1,19 @@
+# zshrc/99_hook_functions
+#
+# define hook functions in case the *_functions arrays are not honoured
+#
+# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: http://git.madduck.net/v/etc/zsh.git
+#
+
+autoload -U is-at-least
+if ! is-at-least 4.3.6; then
+  precmd() { for fn ($precmd_functions) $fn }
+  preexec() { for fn ($preexec_functions) $fn }
+  chpwd() { for fn ($chpwd_functions) $fn }
+  periodic() { for fn ($periodic_functions) $fn }
+fi
+
+# vim:ft=zsh