fix(kubectx): quote % in `kubectx_prompt_info`

master
Marc Cornellà 4 years ago
parent a280726d93
commit d87ab251c7
No known key found for this signature in database
GPG Key ID: 314585E776A9C1B
  1. 12
      plugins/kubectx/kubectx.plugin.zsh

@ -1,9 +1,11 @@
typeset -A kubectx_mapping
function kubectx_prompt_info() {
if [ $commands[kubectl] ]; then
local current_ctx=`kubectl config current-context`
# use value in associative array if it exists, otherwise fall back to the context name
echo "${kubectx_mapping[$current_ctx]:-$current_ctx}"
fi
(( $+commands[kubectl] )) || return
local current_ctx=$(kubectl config current-context)
# use value in associative array if it exists
# otherwise fall back to the context name
echo "${${kubectx_mapping[$current_ctx]:-$current_ctx}:gs/%/%%}"
}

Loading…
Cancel
Save