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

allow changes in display format

This commit is contained in:
Robert Strack 2015-11-16 22:20:26 -05:00
parent d4c74690b6
commit 111dd018b9

View file

@ -4,9 +4,9 @@ __timer_current_time() {
__timer_format_duration() {
local mins=$(printf '%.0f' $(($1 / 60)))
local secs=$(printf '%.1f' $(($1 - 60 * mins)))
local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
local duration_str=$(echo "${mins}m${secs}s")
echo "\`${duration_str#0m}"
echo "${TIMER_SYMBOL:-\`}${duration_str#0m}"
}
preexec() {