diff options
author | Andrea Carpani <andrea.carpani@open-xchange.com> | 2020-07-03 20:05:48 +0300 |
---|---|---|
committer | Andrea Carpani <andrea.carpani@open-xchange.com> | 2020-07-03 20:05:48 +0300 |
commit | 882cede0aec99f58ccaf8d0765688bfee7b198fb (patch) | |
tree | 269805bb7c000a846359dcbfe720f231eaa65ad1 /internal | |
parent | e0ed693e6dcf01a1e0d104ca10d23d1a76b89153 (diff) |
Add option to show terraform workspace even if it's default
Diffstat (limited to 'internal')
-rw-r--r-- | internal/p10k.zsh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 962ebd4f..095ad31c 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -4666,7 +4666,8 @@ function prompt_terraform() { if [[ -z $TF_WORKSPACE ]]; then _p9k_read_word ${${TF_DATA_DIR:-.terraform}:A}/environment && ws=$_p9k__ret fi - [[ $ws == (|default) ]] && return + [[ $ws == '' ]] && return + [[ ($ws == 'default') && ( ! ${_POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT_WS} ) ]] && return local pat class for pat class in "${_POWERLEVEL9K_TERRAFORM_CLASSES[@]}"; do if [[ $ws == ${~pat} ]]; then @@ -7114,6 +7115,7 @@ _p9k_init_params() { _p9k_declare -a POWERLEVEL9K_KUBECONTEXT_CLASSES -- _p9k_declare -a POWERLEVEL9K_AWS_CLASSES -- _p9k_declare -a POWERLEVEL9K_TERRAFORM_CLASSES -- + _p9k_declare -b POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT_WS 0 _p9k_declare -a POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES -- 'service_account:*' SERVICE_ACCOUNT # Specifies the format of java version. # |