Merge pull request #676 from iScrE4m/patch-2

Kubernetes segment shorter if possible
pull/22/head
Ben Hilburn 7 years ago committed by GitHub
commit 25b9ee84c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1423,7 +1423,18 @@ prompt_kubecontext() {
if [[ -z "$k8s_namespace" ]]; then if [[ -z "$k8s_namespace" ]]; then
k8s_namespace="default" k8s_namespace="default"
fi fi
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace" "KUBERNETES_ICON"
local k8s_final_text=""
if [[ "$k8s_context" == "k8s_namespace" ]]; then
# No reason to print out the same identificator twice
k8s_final_text="$k8s_context"
else
k8s_final_text="$k8s_context/$k8s_namespace"
fi
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_final_text" "KUBERNETES_ICON"
fi fi
} }

Loading…
Cancel
Save