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