]> git.eshelyaron.com Git - kubed.git/commitdiff
; * kubed.el (pod): Fix thinko in last commit
authorEshel Yaron <me@eshelyaron.com>
Wed, 21 Aug 2024 10:34:26 +0000 (12:34 +0200)
committerEshel Yaron <me@eshelyaron.com>
Wed, 21 Aug 2024 10:34:26 +0000 (12:34 +0200)
':pad-keys' needs to come before suffixes.

kubed.el

index 0140729aeacb8a8f4be205df01cb0d9208ed0459..b1560f602f7170bd2a3d16714f4c52556aa4dcc4 100644 (file)
--- a/kubed.el
+++ b/kubed.el
@@ -1698,13 +1698,13 @@ Interactively, use the current context.  With a prefix argument
   :prefix (("A" "Attach"       kubed-attach)
            ("X" "Execute"      kubed-exec)
            ("F" "Forward Port" kubed-forward-port-to-pod))
-  :suffixes ([("L" "Logs" kubed-transient-logs-for-pod)
-              ("X" "Exec" kubed-pods-exec)
-              ("a" "Attach" kubed-pods-attach)]
-             [("C-d" "Dired" kubed-pods-dired)
-              ("s" "Shell" kubed-pods-shell)
-              ("F" "Forward port" kubed-pods-forward-port)
-              :pad-keys t])
+  :suffixes ([ ("L" "Logs" kubed-transient-logs-for-pod)
+               ("X" "Exec" kubed-pods-exec)
+               ("a" "Attach" kubed-pods-attach)]
+             [ :pad-keys t
+               ("C-d" "Dired" kubed-pods-dired)
+               ("s" "Shell" kubed-pods-shell)
+               ("F" "Forward port" kubed-pods-forward-port)])
   (dired "C-d" "Start Dired in"
          ;; Explicit namespace in Kuberenetes remote file names
          ;; introduced in Emacs 31.  See Bug#59797.