mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-25 13:30:07 +00:00
Merge branch 'master' into next
This commit is contained in:
commit
b2d3c396c3
1 changed files with 10 additions and 1 deletions
|
@ -1424,7 +1424,16 @@ prompt_kubecontext() {
|
||||||
cur_namespace="default"
|
cur_namespace="default"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$cur_ctx/$cur_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…
Reference in a new issue