Make tabulated-list-mode-map inherit from special-mode-map
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-mode-map): Use 'make-composed-keymap'. Bug #30452
This commit is contained in:
parent
a2f7ed5e70
commit
f52de87166
1 changed files with 4 additions and 2 deletions
|
@ -151,8 +151,10 @@ If ADVANCE is non-nil, move forward by one line afterwards."
|
|||
(forward-line)))
|
||||
|
||||
(defvar tabulated-list-mode-map
|
||||
(let ((map (copy-keymap special-mode-map)))
|
||||
(set-keymap-parent map button-buffer-map)
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(set-keymap-parent map (make-composed-keymap
|
||||
button-buffer-map
|
||||
special-mode-map))
|
||||
(define-key map "n" 'next-line)
|
||||
(define-key map "p" 'previous-line)
|
||||
(define-key map "S" 'tabulated-list-sort)
|
||||
|
|
Loading…
Add table
Reference in a new issue