mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 02:31:03 -08:00
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
|
(defvar timer-list-mode-map
|
||||||
(let ((map (make-sparse-keymap)))
|
(let ((map (make-sparse-keymap)))
|
||||||
(define-key map "c" 'timer-list-cancel)
|
(define-key map "c" 'timer-list-cancel)
|
||||||
|
(define-key map "n" 'next-line)
|
||||||
|
(define-key map "p" 'previous-line)
|
||||||
(easy-menu-define nil map ""
|
(easy-menu-define nil map ""
|
||||||
'("Timers"
|
'("Timers"
|
||||||
["Cancel" timer-list-cancel t]))
|
["Cancel" timer-list-cancel t]))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue