From cbe49f3761abce6002ca78890228b98d1520376b Mon Sep 17 00:00:00 2001 From: Erin Date: Sat, 15 Oct 2022 21:51:51 -0400 Subject: [PATCH] zsh: i have further fucked it --- zsh/.config/zsh/config.d/30_rprompt.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/.config/zsh/config.d/30_rprompt.zsh b/zsh/.config/zsh/config.d/30_rprompt.zsh index 130bc01..66cf3e8 100644 --- a/zsh/.config/zsh/config.d/30_rprompt.zsh +++ b/zsh/.config/zsh/config.d/30_rprompt.zsh @@ -20,7 +20,7 @@ function precmd { RPROMPT="exited %B%(?.%F{green}%?%f.%F{red}%?%f)%b" if [ -z $timer ]; then # If we never set $timer, preexec was never run (e.g. ^C at prompt) - RPROMPT="$(print -P "%B%F{cyan}no exec%f%b, $RPROMPT")" + RPROMPT="%B%F{cyan}no exec%f%b, $RPROMPT" else # Calculate elapsed real time for last command now="$(date +%s.%N)"