diff options
author | David Jetelina <iScrE4m@users.noreply.github.com> | 2017-12-05 12:21:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-05 12:21:31 +0300 |
commit | ea062a17086a93c488256c2d91656e5cd925cf23 (patch) | |
tree | e80c40ae4bcd4ee734c91a0ea2830d8c8f81d301 /powerlevel9k.zsh-theme | |
parent | 3fe9b83ebb0c835d2588f88873d6e8e6b2e1e1be (diff) |
Fix of k8s shorter segment
My latest PR #676 seemed to have been incompatible with #661 - I did my PR on top of master instead of next. This one is done on top of next and should fix the current not so great state of next (prints nothing). Sorry!
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index 4e7f4316..cbb9e202 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1430,11 +1430,11 @@ prompt_kubecontext() { local k8s_final_text="" - if [[ "$k8s_context" == "k8s_namespace" ]]; then + if [[ "$cur_ctx" == "cur_namespace" ]]; then # No reason to print out the same identificator twice - k8s_final_text="$k8s_context" + k8s_final_text="$cur_ctx" else - k8s_final_text="$k8s_context/$k8s_namespace" + k8s_final_text="$cur_ctx/$cur_namespace" fi "$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_final_text" "KUBERNETES_ICON" |