timer.plugin.zsh 724 Bytes
Newer Older
Robert Strack's avatar
Robert Strack committed
1
2
3
4
5
6
__timer_current_time() {
  perl -MTime::HiRes=time -e'print time'
}

__timer_format_duration() {
  local mins=$(printf '%.0f' $(($1 / 60)))
7
  local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
Robert Strack's avatar
Robert Strack committed
8
  local duration_str=$(echo "${mins}m${secs}s")
9
  echo "${TIMER_SYMBOL:-\`}${duration_str#0m}"
Robert Strack's avatar
Robert Strack committed
10
11
}

12
preexec() {
Robert Strack's avatar
Robert Strack committed
13
  __timer_cmd_start_time=$(__timer_current_time)
14
15
16
}

precmd() {
Robert Strack's avatar
Robert Strack committed
17
18
  if [ -n "${__timer_cmd_start_time}" ]; then
    local cmd_end_time=$(__timer_current_time)
Robert Strack's avatar
Robert Strack committed
19
    local tdiff=$((cmd_end_time - __timer_cmd_start_time))
20
    unset __timer_cmd_start_time
Robert Strack's avatar
Robert Strack committed
21
22
23
    local tdiffstr=$(__timer_format_duration ${tdiff})
    local cols=$((COLUMNS - ${#tdiffstr} - 1))
    echo -e "\033[1A\033[${cols}C ${tdiffstr}"
24
25
  fi
}