]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/tab-bar.el (tab-bar-move-repeat-map): Fix alias binding of tab-move.
authorJuri Linkov <juri@linkov.net>
Sun, 24 Oct 2021 19:20:15 +0000 (22:20 +0300)
committerJuri Linkov <juri@linkov.net>
Sun, 24 Oct 2021 19:22:16 +0000 (22:22 +0300)
(tab-bar-move-tab-backward): Put 'repeat-map' symbol property.

lisp/tab-bar.el

index 10ff57bfd0af31b8fb516cac30185fc753b033e4..10f26875db5ada6d27dfcb254526615cd734ee71 100644 (file)
@@ -2378,12 +2378,13 @@ Used in `repeat-mode'.")
 
 (defvar tab-bar-move-repeat-map
   (let ((map (make-sparse-keymap)))
-    (define-key map "m" 'tab-bar-move-tab)
+    (define-key map "m" 'tab-move)
     (define-key map "M" 'tab-bar-move-tab-backward)
     map)
   "Keymap to repeat tab move key sequences `C-x t m m M'.
 Used in `repeat-mode'.")
 (put 'tab-move 'repeat-map 'tab-bar-move-repeat-map)
+(put 'tab-bar-move-tab-backward 'repeat-map 'tab-bar-move-repeat-map)
 
 \f
 (provide 'tab-bar)