summaryrefslogtreecommitdiffstats
path: root/.zsh/functions/preexec_update_vars
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-08-13 20:53:57 +0200
committerGravatar Tom Willemse2013-08-13 20:53:57 +0200
commit2a133f4a39b120cf89755a6222760e1d6c4a45ce (patch)
treeaa5d3e6933072005da11fea6e21b9f4352a2f629 /.zsh/functions/preexec_update_vars
downloadzsh-2a133f4a39b120cf89755a6222760e1d6c4a45ce.tar.gz
zsh-2a133f4a39b120cf89755a6222760e1d6c4a45ce.zip
Initial commit of my ZSH configuration in vcsh
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