]> git.eshelyaron.com Git - kubed.git/commitdiff
; Fix regex matching multi-hop Tramp file names
authorEshel Yaron <me@eshelyaron.com>
Thu, 15 Aug 2024 07:43:03 +0000 (09:43 +0200)
committerEshel Yaron <me@eshelyaron.com>
Thu, 15 Aug 2024 07:43:03 +0000 (09:43 +0200)
* kubed.el (kubed-local-namespace)
(kubed-local-context-and-namespace): Tweak regex.

kubed.el

index a3cdb65a2e716daf93ff1ceedfd0c3a017758212..d73c53b66efdd595c52109930f73b7e550ff5f50 100644 (file)
--- a/kubed.el
+++ b/kubed.el
@@ -2365,7 +2365,7 @@ Optional argument DEFAULT is the minibuffer default argument."
   (or kubed-list-namespace
       (nth 3 kubed-display-resource-info)
       (kubed--static-if (<= 31 emacs-major-version)
-          (and (string-match "[/:]kubernetes:.*%\\([a-z0-9-]+\\):"
+          (and (string-match "[/|]kubernetes:.*%\\([a-z0-9-]+\\):"
                              default-directory)
                (match-string 1 default-directory)))
       (kubed-current-namespace (or context (kubed-local-context)))))
@@ -2383,7 +2383,7 @@ Optional argument DEFAULT is the minibuffer default argument."
       (let ((context (kubed-current-context)))
         (cons context
               (or (kubed--static-if (<= 31 emacs-major-version)
-                      (and (string-match "[/:]kubernetes:.*%\\([a-z0-9-]+\\):"
+                      (and (string-match "[/|]kubernetes:.*%\\([a-z0-9-]+\\):"
                                          default-directory)
                            (match-string 1 default-directory)))
                   (kubed-current-namespace context))))))