diff options
author | Tassilo Horn <tassilo@member.fsf.org> | 2008-04-14 15:46:06 +0000 |
---|---|---|
committer | Tassilo Horn <tassilo@member.fsf.org> | 2008-04-14 15:46:06 +0000 |
commit | adc95ad64feaf5a42345c086460377452b5f9cae (patch) | |
tree | 3719f50bea8fccd2dba9173e8aaee20c98479e5e /lisp/doc-view.el | |
parent | 1f3e0cb5d235369585c9bb1c5fcca0b52d2ef7fd (diff) | |
download | emacs-adc95ad64feaf5a42345c086460377452b5f9cae.tar.gz |
(doc-view-mode-map): Bind C-a to image-bol and C-e
to image-eol.
Diffstat (limited to 'lisp/doc-view.el')
-rw-r--r-- | lisp/doc-view.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/doc-view.el b/lisp/doc-view.el index 718040a8fab..4e095c0e676 100644 --- a/lisp/doc-view.el +++ b/lisp/doc-view.el @@ -310,6 +310,8 @@ Can be `dvi', `pdf', or `ps'.") ;; Scrolling (define-key map [remap forward-char] 'image-forward-hscroll) (define-key map [remap backward-char] 'image-backward-hscroll) + (define-key map [remap move-end-of-line] 'image-eol) + (define-key map [remap move-beginning-of-line] 'image-bol) (define-key map [remap next-line] 'image-next-line) (define-key map [remap previous-line] 'image-previous-line) ;; Show the tooltip |