1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(doc-view-mode-map): Bind RET to image-next-line.

This commit is contained in:
Tassilo Horn 2009-03-13 21:03:21 +00:00
parent 7db26af03b
commit 4376876ec2
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2009-03-13 Tassilo Horn <tassilo@member.fsf.org>
* doc-view.el (doc-view-mode-map): Bind RET to image-next-line.
2009-03-13 Alexandre Julliard <julliard@winehq.org>
* vc-git.el (vc-git-previous-revision, vc-git-next-revision):

View file

@ -289,6 +289,7 @@ Can be `dvi', `pdf', or `ps'.")
(define-key map (kbd "M-<") 'doc-view-first-page)
(define-key map (kbd "M->") 'doc-view-last-page)
(define-key map [remap goto-line] 'doc-view-goto-page)
(define-key map (kbd "RET") 'image-next-line)
;; Zoom in/out.
(define-key map "+" 'doc-view-enlarge)
(define-key map "-" 'doc-view-shrink)