mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
fix(timer): skip timer after running clear
(#12370)
Co-authored-by: Marc Cornellà <marc@mcornella.com>
This commit is contained in:
parent
11e84bf4f7
commit
6c021fd432
1 changed files with 3 additions and 0 deletions
|
@ -23,11 +23,14 @@ __timer_display_timer_precmd() {
|
||||||
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
|
||||||
if [[ -z "${TIMER_THRESHOLD}" || ${tdiff} -ge "${TIMER_THRESHOLD}" ]]; then
|
if [[ -z "${TIMER_THRESHOLD}" || ${tdiff} -ge "${TIMER_THRESHOLD}" ]]; then
|
||||||
|
local last_cmd="${history[$((HISTCMD - 1))]%% *}"
|
||||||
|
if [[ "$last_cmd" != clear ]]; then
|
||||||
local tdiffstr=$(__timer_format_duration ${tdiff})
|
local tdiffstr=$(__timer_format_duration ${tdiff})
|
||||||
local cols=$((COLUMNS - ${#tdiffstr} - 1))
|
local cols=$((COLUMNS - ${#tdiffstr} - 1))
|
||||||
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
|
echo -e "\033[1A\033[${cols}C ${tdiffstr}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
autoload -U add-zsh-hook
|
autoload -U add-zsh-hook
|
||||||
|
|
Loading…
Reference in a new issue