From 2a133f4a39b120cf89755a6222760e1d6c4a45ce Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 13 Aug 2013 20:53:57 +0200 Subject: Initial commit of my ZSH configuration in vcsh --- .zsh/functions/preexec_update_vars | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .zsh/functions/preexec_update_vars (limited to '.zsh/functions/preexec_update_vars') 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 -- cgit v1.2.3-54-g00ecf