1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Kubernetes segment shorter if possible

Fixes #675
This commit is contained in:
David Jetelina 2017-11-14 18:58:16 +01:00 committed by GitHub
parent 87acc51aca
commit 37f24dcc5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
} }