diff options
author | Idan Fishman <idanfishmanswe@gmail.com> | 2023-04-27 11:49:26 +0200 |
---|---|---|
committer | Carlo Sala <carlosalag@protonmail.com> | 2023-04-27 11:51:04 +0200 |
commit | 343c78ae91ff03ea66517b1d69b25fa262ce5408 (patch) | |
tree | 9019a2a02df65d05c87291d775bf12bfde17830e | |
parent | 5d3e86e2a48adf7a308773f8f1b725d187c7c5ef (diff) | |
download | zsh-343c78ae91ff03ea66517b1d69b25fa262ce5408.tar.gz zsh-343c78ae91ff03ea66517b1d69b25fa262ce5408.tar.bz2 zsh-343c78ae91ff03ea66517b1d69b25fa262ce5408.zip |
fix(aws): set properly set divider to space
Closes #11649
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
-rw-r--r-- | plugins/aws/aws.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/aws/aws.plugin.zsh b/plugins/aws/aws.plugin.zsh index 0da91bc22..a437dc8e8 100644 --- a/plugins/aws/aws.plugin.zsh +++ b/plugins/aws/aws.plugin.zsh @@ -229,7 +229,7 @@ function aws_prompt_info() { fi if [[ -n $AWS_REGION ]]; then - [[ -n $AWS_PROFILE ]] && _aws_to_show+="${ZSH_THEME_AWS_DIVIDER=' '}" + [[ -n $AWS_PROFILE ]] && _aws_to_show+="${ZSH_THEME_AWS_DIVIDER=" "}" _aws_to_show+="${ZSH_THEME_AWS_REGION_PREFIX="<region:"}${region}${ZSH_THEME_AWS_REGION_SUFFIX=">"}" fi |