mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 15:56:35 -04:00
* lisp/tab-bar.el (tab-bar-move-repeat-map): Fix alias binding of tab-move.
(tab-bar-move-tab-backward): Put 'repeat-map' symbol property.
This commit is contained in:
parent
56caf1c9b8
commit
7385a7667f
|
|
@ -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)
|
||||
|
||||
|
||||
(provide 'tab-bar)
|
||||
|
|
|
|||
Loading…
Reference in a new issue