diff options
author | Peter Stephenson <pws@zsh.org> | 2017-06-26 11:16:38 +0100 |
---|---|---|
committer | Peter Stephenson <pws@zsh.org> | 2017-06-26 11:16:38 +0100 |
commit | d78761c0030eb58fff9116819583c6669a44a8c6 (patch) | |
tree | 333756670dc1e09994d99fabe3a20a33fe4f3d4b | |
parent | a0f33b5a6b062721feecfcd280e5f4adeddfedb7 (diff) | |
download | zsh-d78761c0030eb58fff9116819583c6669a44a8c6.tar.gz zsh-d78761c0030eb58fff9116819583c6669a44a8c6.tar.xz zsh-d78761c0030eb58fff9116819583c6669a44a8c6.zip |
41345: Use consistent prompt variables in prompt themese.
Some more sanity may be needed in this area but this apsect seems uncontroversial.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Functions/Prompts/prompt_walters_setup | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index ca99a6a7b..5057d4026 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-06-26 Peter Stephenson <p.stephenson@samsung.com> + + * 41345: Functions/Prompts/prompt_walters_setup: use consistent + versions of the prompt variables in prompt themes. + 2017-06-22 Peter Stephenson <p.stephenson@samsung.com> * Axel: 41342: conigure.ac: check for yodl version 4. diff --git a/Functions/Prompts/prompt_walters_setup b/Functions/Prompts/prompt_walters_setup index 7948254d8..9fea574d0 100644 --- a/Functions/Prompts/prompt_walters_setup +++ b/Functions/Prompts/prompt_walters_setup @@ -14,10 +14,10 @@ EOF prompt_walters_setup () { if [[ "$TERM" != "dumb" ]]; then - PROMPT='%B%(?..[%?] )%b%n@%U%m%u> ' - RPROMPT="%F{${1:-green}}%~%f" + PS1='%B%(?..[%?] )%b%n@%U%m%u> ' + RPS1="%F{${1:-green}}%~%f" else - PROMPT="%(?..[%?] )%n@%m:%~> " + PS1="%(?..[%?] )%n@%m:%~> " fi prompt_opts=(cr percent) |