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_vars13
1 files changed, 13 insertions, 0 deletions
diff --git a/.zsh/functions/preexec_update_vars b/.zsh/functions/preexec_update_vars
new file mode 100644
index 0000000..105d240
--- /dev/null
+++ b/.zsh/functions/preexec_update_vars
@@ -0,0 +1,13 @@
+# -*- mode: shell-script -*-
+
+case "$1" in
+ git*)
+ __EXECUTED_GIT_COMMAND=1
+ ;;
+ cower*)
+ __EXECUTED_COWER_COMMAND=1
+ ;;
+ *pacman*)
+ __EXECUTED_PACMAN_COMMAND=1
+ ;;
+esac