mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-22 15:21:56 +00:00
Merge pull request #693 from iScrE4m/patch-2
Fix of k8s shorter segment
This commit is contained in:
commit
40b500cda2
1 changed files with 3 additions and 3 deletions
|
@ -1430,11 +1430,11 @@ prompt_kubecontext() {
|
||||||
|
|
||||||
local k8s_final_text=""
|
local k8s_final_text=""
|
||||||
|
|
||||||
if [[ "$k8s_context" == "k8s_namespace" ]]; then
|
if [[ "$cur_ctx" == "cur_namespace" ]]; then
|
||||||
# No reason to print out the same identificator twice
|
# No reason to print out the same identificator twice
|
||||||
k8s_final_text="$k8s_context"
|
k8s_final_text="$cur_ctx"
|
||||||
else
|
else
|
||||||
k8s_final_text="$k8s_context/$k8s_namespace"
|
k8s_final_text="$cur_ctx/$cur_namespace"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_final_text" "KUBERNETES_ICON"
|
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_final_text" "KUBERNETES_ICON"
|
||||||
|
|
Loading…
Reference in a new issue