diff options
author | Mark Oteiza <mvoteiza@udel.edu> | 2017-09-14 19:52:09 -0400 |
---|---|---|
committer | Mark Oteiza <mvoteiza@udel.edu> | 2017-09-14 19:52:09 -0400 |
commit | 117f28430ab3e17f811e80025ee6a9165c87057e (patch) | |
tree | 4b96fbc8833d4bc708fa6698798a4e38181112d1 /lisp/emacs-lisp | |
parent | ce0aa058641cd7641db6dea6f3d79a30c1fd21f7 (diff) | |
download | emacs-117f28430ab3e17f811e80025ee6a9165c87057e.tar.gz emacs-117f28430ab3e17f811e80025ee6a9165c87057e.tar.bz2 emacs-117f28430ab3e17f811e80025ee6a9165c87057e.zip |
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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/timer-list.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/timer-list.el b/lisp/emacs-lisp/timer-list.el index fb0e98c5b8e..5d00fb290f9 100644 --- a/lisp/emacs-lisp/timer-list.el +++ b/lisp/emacs-lisp/timer-list.el @@ -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])) |