From 5c60ec46ec087e7e58c8fc00c6821060e8caecb8 Mon Sep 17 00:00:00 2001 From: Arseny Maslennikov Date: Fri, 19 Feb 2021 18:38:09 -0600 Subject: 47867: Fix RPROMPT typo in prompinit --- ChangeLog | 5 +++++ Functions/Prompts/promptinit | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8eaaee9d1..cee131eda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2021-02-19 dana + + * 47867: Arseny Maslennikov: Functions/Prompts/promptinit: Fix + RPROMPT typo + 2021-02-18 Peter Stephenson * users/26509: Src/builtin.c: fc -L should ignore remote entries diff --git a/Functions/Prompts/promptinit b/Functions/Prompts/promptinit index e27b8779a..5e42ebdd3 100644 --- a/Functions/Prompts/promptinit +++ b/Functions/Prompts/promptinit @@ -49,7 +49,7 @@ prompt_preview_safely() { # This handles all the stuff from the default :prompt-theme cleanup local +h PS1=$PS1 PS2=$PS2 PS3=$PS3 PS4=$PS4 RPS1=$RPS1 RPS2=$RPS2 - local +h PROMPT=$PROMPT RPROMPT=$RPOMPT RPROMPT2=$RPROMPT2 PSVAR=$PSVAR + local +h PROMPT=$PROMPT RPROMPT=$RPROMPT RPROMPT2=$RPROMPT2 PSVAR=$PSVAR local -a precmd_functions preexec_functions prompt_preview_cleanup local -aLl +h zle_highlight @@ -101,7 +101,7 @@ Use prompt -h for help on specific themes.' if [[ -z "$prompt_theme[1]" ]]; then # Not using a prompt theme; save settings local +h PS1=$PS1 PS2=$PS2 PS3=$PS3 PS4=$PS4 RPS1=$RPS1 RPS2=$RPS2 - local +h PROMPT=$PROMPT RPROMPT=$RPOMPT RPROMPT2=$RPROMPT2 PSVAR=$PSVAR + local +h PROMPT=$PROMPT RPROMPT=$RPROMPT RPROMPT2=$RPROMPT2 PSVAR=$PSVAR local -a precmd_functions preexec_functions else trap 'prompt_${prompt_theme[1]}_setup "${(@)prompt_theme[2,-1]}"' 0 -- cgit 1.4.1