浏览代码

allow changes in display format

Robert Strack 9 年之前
父节点
当前提交
111dd018b9
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      plugins/timer/timer.plugin.zsh

+ 2 - 2
plugins/timer/timer.plugin.zsh

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