1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

added pre_functions

This commit is contained in:
Robert Strack 2015-11-18 20:33:38 -05:00
parent 96148d2275
commit de8d6841b0

View file

@ -10,11 +10,11 @@ __timer_format_duration() {
echo "${format//\%d/${duration_str#0m}}" echo "${format//\%d/${duration_str#0m}}"
} }
preexec() { __timer_save_time_preexec() {
__timer_cmd_start_time=$(__timer_current_time) __timer_cmd_start_time=$(__timer_current_time)
} }
precmd() { __timer_display_timer_precmd() {
if [ -n "${__timer_cmd_start_time}" ]; then if [ -n "${__timer_cmd_start_time}" ]; then
local cmd_end_time=$(__timer_current_time) local cmd_end_time=$(__timer_current_time)
local tdiff=$((cmd_end_time - __timer_cmd_start_time)) local tdiff=$((cmd_end_time - __timer_cmd_start_time))
@ -24,3 +24,6 @@ precmd() {
echo -e "\033[1A\033[${cols}C ${tdiffstr}" echo -e "\033[1A\033[${cols}C ${tdiffstr}"
fi fi
} }
preexec_functions+=(__timer_save_time_preexec)
precmd_functions+=(__timer_display_timer_precmd)