mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
fix(kubectx): quote % in kubectx_prompt_info
This commit is contained in:
parent
a280726d93
commit
d87ab251c7
1 changed files with 7 additions and 5 deletions
|
@ -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…
Reference in a new issue