From e13ff75f38200b03b26f798991b3ecf30e547d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20=C3=96hrn?= Date: Tue, 24 Aug 2021 19:19:29 +0200 Subject: [PATCH] fix(kubectx): show plain context if not mapped (#10134) --- plugins/kubectx/kubectx.plugin.zsh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/plugins/kubectx/kubectx.plugin.zsh b/plugins/kubectx/kubectx.plugin.zsh index 56b7217f1..abbdc254b 100644 --- a/plugins/kubectx/kubectx.plugin.zsh +++ b/plugins/kubectx/kubectx.plugin.zsh @@ -3,12 +3,7 @@ typeset -A kubectx_mapping function kubectx_prompt_info() { if [ $commands[kubectl] ]; then local current_ctx=`kubectl config current-context` - - #if associative array declared - if [[ -n $kubectx_mapping ]]; then - echo "${kubectx_mapping[$current_ctx]}" - else - echo $current_ctx - fi + # use value in associative array if it exists, otherwise fall back to the context name + echo "${kubectx_mapping[$current_ctx]:-$current_ctx}" fi }