]> git.eshelyaron.com Git - kubed.git/commitdiff
; Use local context as default in some prompts
authorEshel Yaron <me@eshelyaron.com>
Wed, 14 Aug 2024 17:35:48 +0000 (19:35 +0200)
committerEshel Yaron <me@eshelyaron.com>
Wed, 14 Aug 2024 17:35:48 +0000 (19:35 +0200)
kubed.el

index 485b1c05bc6e4061a9e5b1781735c64f640ea674..d96fa8121fc8f05aa55b7d5d167852aa69b836fd 100644 (file)
--- a/kubed.el
+++ b/kubed.el
@@ -2259,7 +2259,7 @@ Optional argument DEFAULT is the minibuffer default argument."
 (defun kubed-use-context (context)
   "Set current Kubernetes context to CONTEXT."
   (interactive
-   (list (kubed-read-context "Use context" (kubed-current-context))))
+   (list (kubed-read-context "Use context" (kubed-local-context))))
   (unless (zerop
            (call-process
             kubed-kubectl-program nil nil nil
@@ -2271,7 +2271,7 @@ Optional argument DEFAULT is the minibuffer default argument."
 (defun kubed-rename-context (old new)
   "Rename Kubernetes context OLD to NEW."
   (interactive
-   (let ((old (kubed-read-context "Rename context" (kubed-current-context))))
+   (let ((old (kubed-read-context "Rename context" (kubed-local-context))))
      (list old (read-string (format-prompt "Rename context to" old)
                             nil 'kubed-context-history old))))
   (unless (zerop