]> git.eshelyaron.com Git - emacs.git/commitdiff
Bind n,p in timer-list
authorMark Oteiza <mvoteiza@udel.edu>
Thu, 14 Sep 2017 23:52:09 +0000 (19:52 -0400)
committerMark Oteiza <mvoteiza@udel.edu>
Thu, 14 Sep 2017 23:52:09 +0000 (19:52 -0400)
* lisp/emacs-lisp/timer-list.el (timer-list-mode-map): Bind n and p
to next- and previous-line, respectively.

lisp/emacs-lisp/timer-list.el

index fb0e98c5b8ee78c0962de46abe38693f6668f33f..5d00fb290f97816e482e848783f35c24d45d180b 100644 (file)
@@ -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]))