summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/preexec_update_vars
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/functions/preexec_update_vars')
-rw-r--r--.zsh/functions/preexec_update_vars12
1 files changed, 12 insertions, 0 deletions
diff --git a/.zsh/functions/preexec_update_vars b/.zsh/functions/preexec_update_vars
new file mode 100644
index 0000000..70f3d68
--- /dev/null
+++ b/.zsh/functions/preexec_update_vars
@@ -0,0 +1,12 @@
+# -*- mode: shell-script -*-
+case "$1" in
+ git*)
+ __EXECUTED_GIT_COMMAND=1
+ ;;
+ cower)
+ __EXECUTED_COWER_COMMAND=1
+ ;;
+ pacman)
+ __EXECUTED_PACMAN_COMMAND=1
+ ;;
+esac