From 2318bda2c31f687d2c9c0c6ee0a1dea07b4d13f4 Mon Sep 17 00:00:00 2001
From: romkatv <roman.perepelitsa@gmail.com>
Date: Tue, 30 Jul 2019 07:14:51 +0200
Subject: bug fixes: don't replace '_' with ' ' in gke clusters and clear the
 default of POWERLEVEL9K_KUBECONTEXT_SHORTEN

---
 internal/p10k.zsh | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index 306198b3..b76fa7ae 100755
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -2925,16 +2925,15 @@ prompt_kubecontext() {
       case $shorten in
         gke)
           # gke_projectname_availability-zone_cluster-01 => cluster-01
-          if [[ $cluster == gke_* ]]; then
-            local parts=(${(s:_:)cluster})
-            (( $#parts > 3 )) && text=$parts[4,-1]
+          if [[ $cluster == (#b)gke_[^_]#_[^_]#_(?*) ]]; then
+            text=$match[1]
             break
           fi
           ;;
         eks)
-          # arn:aws:eks:us-east-1:XXXXXXXXXXXX:cluster/eks-infra
-          if [[ $cluster == (#b)arn:aws:eks:[[:alnum:]-]##:[[:digit:]]##:cluster/(*) ]]; then
-            [[ -n $match[1] ]] && text=$match[1]
+          # arn:aws:eks:us-east-1:123456789012:cluster/eks-infra
+          if [[ $cluster == (#b)arn:aws:eks:[[:alnum:]-]##:[[:digit:]]##:cluster/(?*) ]]; then
+            text=$match[1]
             break
           fi
       esac
@@ -3716,7 +3715,7 @@ _p9k_init_params() {
   _p9k_declare -e POWERLEVEL9K_NODEENV_LEFT_DELIMITER "["
   _p9k_declare -e POWERLEVEL9K_NODEENV_RIGHT_DELIMITER "]"
   _p9k_declare -b POWERLEVEL9K_KUBECONTEXT_SHOW_DEFAULT_NAMESPACE 1
-  _p9k_declare -a POWERLEVEL9K_KUBECONTEXT_SHORTEN -- gke eks
+  _p9k_declare -a POWERLEVEL9K_KUBECONTEXT_SHORTEN --
   # Defines context classes for the purpose of applying different styling to different contexts.
   #
   # POWERLEVEL9K_KUBECONTEXT_CLASSES must be an array with even number of elements. The first
-- 
cgit v1.2.3