From f52d81072aa7b14667f191605bca3a6623cf2bb5 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Thu, 23 Mar 2000 04:13:54 +0000 Subject: zsh-workers/10181 --- Functions/Prompts/prompt_bart_setup | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'Functions') diff --git a/Functions/Prompts/prompt_bart_setup b/Functions/Prompts/prompt_bart_setup index d602cc9ec..6c154134f 100644 --- a/Functions/Prompts/prompt_bart_setup +++ b/Functions/Prompts/prompt_bart_setup @@ -60,19 +60,10 @@ prompt_bart_precmd () { psvar[8]="$history[$#history]" # Use history text, not just number psvar[9]='' # Padding before upper right prompt - if [[ -o promptsubst ]] - then - # This is a bug workaround; ${(%)...} mishandles promptsubst - repeat $[COLUMNS-${#${(%f)${${(e)PS1}//[%]\{[^%]#%\}/}}[1]}-1] - do - psvar[9]="$psvar[9] " - done - else - repeat $[COLUMNS-${#${(%f)${PS1//[%]\{[^%]#%\}/}}[1]}-1] - do - psvar[9]="$psvar[9] " - done - fi + repeat $[COLUMNS-${#${(%%f)${PS1//[%]\{[^%]#%\}/}}[1]}-1] + do + psvar[9]="$psvar[9] " + done } prompt_bart_ps1 () { -- cgit 1.4.1