Bind n,p in timer-list
* lisp/emacs-lisp/timer-list.el (timer-list-mode-map): Bind n and p to next- and previous-line, respectively.
This commit is contained in:
parent
ce0aa05864
commit
117f28430a
1 changed files with 2 additions and 0 deletions
|
@ -81,6 +81,8 @@
|
|||
(defvar timer-list-mode-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(define-key map "c" 'timer-list-cancel)
|
||||
(define-key map "n" 'next-line)
|
||||
(define-key map "p" 'previous-line)
|
||||
(easy-menu-define nil map ""
|
||||
'("Timers"
|
||||
["Cancel" timer-list-cancel t]))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue