]> git.eshelyaron.com Git - emacs.git/commitdiff
Make image commands available in image-mode
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Feb 2016 07:11:46 +0000 (18:11 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Feb 2016 07:11:46 +0000 (18:11 +1100)
* lisp/image-mode.el (image-mode-map): Inherit from
`image-map' so that the usual image commands work.

etc/NEWS
lisp/image-mode.el

index 4a6a0acbbabb51ae0096ba80b75356d754a90d66..ae503f6db3f1de0a1ef87d82d3764d3500ff5b5d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -902,7 +902,8 @@ in question).
 *** Images inserted with `insert-image' and related functions get a
 keymap put into the text properties (or overlays) that span the
 image.  This keymap binds keystrokes for manipulating size and
-rotation, as well as saving the image to a file.
+rotation, as well as saving the image to a file.  These commands are
+also available in `image-mode'.
 
 +++
 *** A new library for creating and manipulating SVG images has been
index e549b49001e0645a2897c623b6de89ee4a61a8a0..e2037b9207d511ffb361cf2ddfb12dde9c8b297d 100644 (file)
@@ -373,6 +373,7 @@ call."
 (defvar image-mode-map
   (let ((map (make-sparse-keymap)))
     (set-keymap-parent map special-mode-map)
+    (set-keymap-parent map image-map)
     (define-key map "\C-c\C-c" 'image-toggle-display)
     (define-key map (kbd "SPC")       'image-scroll-up)
     (define-key map (kbd "S-SPC")     'image-scroll-down)