Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Kubernetes segment shorter if possible #676

Merged
merged 2 commits into from
Dec 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion powerlevel9k.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,18 @@ prompt_kubecontext() {
if [[ -z "$k8s_namespace" ]]; then
k8s_namespace="default"
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
}

Expand Down