Do not display Kubernetes context and namespace if it's the defaults ones

This commit is contained in:
Thibault Lacroux 2020-05-04 15:48:01 +02:00
parent 870ab7c9be
commit a34065e24a
No known key found for this signature in database
GPG Key ID: 518C18AE96F2B1CF

View File

@ -625,6 +625,10 @@ function __bobthefish_prompt_k8s_context -S -d 'Show current Kubernetes context'
[ "$theme_display_k8s_namespace" = 'yes' ]
and set -l namespace (__bobthefish_k8s_namespace)
[ -z $context -o "$context" = 'default' ]
and [ -z $namespace -o "$namespace" = 'default' ]
and return
set -l segment $k8s_glyph " " $context
[ -n "$namespace" ]
and set segment $segment ":" $namespace