From d2ece376a3b50f0ca361d27fb8e55372771532dd Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Sat, 8 Apr 2000 21:04:47 +0000 Subject: 10594: Fix index into $history in prompt_bart_precmd. 10591: Completion/User/_fakeroot: Completion for the fakeroot program. 10590: Completion/Linux/_rpm: Signature checking completes only local package files. --- Functions/Prompts/prompt_bart_setup | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) (limited to 'Functions/Prompts') diff --git a/Functions/Prompts/prompt_bart_setup b/Functions/Prompts/prompt_bart_setup index d602cc9ec..0713a48af 100644 --- a/Functions/Prompts/prompt_bart_setup +++ b/Functions/Prompts/prompt_bart_setup @@ -57,22 +57,13 @@ prompt_bart_precmd () { setopt localoptions noxtrace extendedglob noksharrays # Using psvar here protects against unwanted promptsubst expansions. - 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 + psvar[8]="$history[$[${(%):-%h}-1]]" # Use history text, not just number + psvar[9]='' # Padding before upper right prompt + + repeat $[COLUMNS-${#${(%%f)${PS1//[%]\{[^%]#%\}/}}[1]}-1] + do + psvar[9]="$psvar[9] " + done } prompt_bart_ps1 () { -- cgit 1.4.1