浏览代码

cleaning up

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

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

@@ -3,12 +3,12 @@ preexec() {
 }
 }
 
 
 precmd() {
 precmd() {
-  if [ -n "${__timer_cmd_start_time}" ]; then
+  if [ -n "$__timer_cmd_start_time" ]; then
     local cmd_end_time=$(date '+%s')
     local cmd_end_time=$(date '+%s')
-    local tdiff=$((${cmd_end_time} - ${__timer_cmd_start_time}))
+    local tdiff=$((cmd_end_time - __timer_cmd_start_time))
     unset __timer_cmd_start_time
     unset __timer_cmd_start_time
     local tdiffstr="$((tdiff / 60))m$((tdiff % 60))s"
     local tdiffstr="$((tdiff / 60))m$((tdiff % 60))s"
-    local cols=$(($COLUMNS - ${#tdiffstr#0m} - 2))
+    local cols=$((COLUMNS - ${#tdiffstr#0m} - 2))
     echo -e "\033[1A\033[${cols}C \`${tdiffstr#0m}"
     echo -e "\033[1A\033[${cols}C \`${tdiffstr#0m}"
   fi
   fi
 }
 }