summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorPatrick Tavares <tavarespatrick01@gmail.com>2021-08-16 19:46:46 +0300
committerPatrick Tavares <tavarespatrick01@gmail.com>2021-08-16 19:46:46 +0300
commit20b87731de26638f40dce1bfc89f5b5a207e090f (patch)
treef90d88185236254c15a7edeab9e650e4b469a037 /internal
parent32e76e772173f1d2856ee4002f21607523221ce7 (diff)
add availability to display or not Terraform version
Show Terraform version segment only when *.tf files are present in current directory
Diffstat (limited to 'internal')
-rw-r--r--internal/p10k.zsh5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index 2099c32f..2e1fa9e8 100644
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -3,7 +3,7 @@ if [[ $__p9k_sourced != 13 ]]; then
>&2 print -P "[%F{1}ERROR%f]: Corrupted powerlevel10k installation."
>&2 print -P ""
if (( ${+functions[antigen]} )); then
- >&2 print -P "If using %Bantigen%b, run the folowing command to fix:"
+ >&2 print -P "If using %Bantigen%b, run the following command to fix:"
>&2 print -P ""
>&2 print -P " %F{2}antigen%f reset"
if [[ -d ~/.antigen ]]; then
@@ -4888,6 +4888,9 @@ _p9k_prompt_terraform_init() {
}
function prompt_terraform_version() {
+ if [[ $_POWERLEVEL9K_TERRAFORM_VERSION_ALWAYS ]]; then
+ _p9k_upglob "*.tf" && return 1
+ fi
_p9k_cached_cmd 0 '' terraform --version || return
local v=${_p9k__ret#Terraform v}
(( $#v < $#_p9k__ret )) || return