summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh')
-rw-r--r--zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh35
1 files changed, 0 insertions, 35 deletions
diff --git a/zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh b/zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh
deleted file mode 100644
index b261f71..0000000
--- a/zsh/oh-my-zsh/plugins/timer/timer.plugin.zsh
+++ /dev/null
@@ -1,35 +0,0 @@
-zmodload zsh/datetime
-
-__timer_current_time() {
- zmodload zsh/datetime
- echo $EPOCHREALTIME
-}
-
-__timer_format_duration() {
- local mins=$(printf '%.0f' $(($1 / 60)))
- local secs=$(printf "%.${TIMER_PRECISION:-1}f" $(($1 - 60 * mins)))
- local duration_str=$(echo "${mins}m${secs}s")
- local format="${TIMER_FORMAT:-/%d}"
- echo "${format//\%d/${duration_str#0m}}"
-}
-
-__timer_save_time_preexec() {
- __timer_cmd_start_time=$(__timer_current_time)
-}
-
-__timer_display_timer_precmd() {
- if [ -n "${__timer_cmd_start_time}" ]; then
- local cmd_end_time=$(__timer_current_time)
- local tdiff=$((cmd_end_time - __timer_cmd_start_time))
- unset __timer_cmd_start_time
- if [[ -z "${TIMER_THRESHOLD}" || ${tdiff} -ge "${TIMER_THRESHOLD}" ]]; then
- local tdiffstr=$(__timer_format_duration ${tdiff})
- local cols=$((COLUMNS - ${#tdiffstr} - 1))
- echo -e "\033[1A\033[${cols}C ${tdiffstr}"
- fi
- fi
-}
-
-autoload -U add-zsh-hook
-add-zsh-hook preexec __timer_save_time_preexec
-add-zsh-hook precmd __timer_display_timer_precmd