From: Lars Ingebrigtsen Date: Wed, 24 Feb 2016 07:11:46 +0000 (+1100) Subject: Make image commands available in image-mode X-Git-Tag: emacs-26.0.90~2466 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=378d138e64e9389e277e95528c143dc2456727a5;p=emacs.git Make image commands available in image-mode * lisp/image-mode.el (image-mode-map): Inherit from `image-map' so that the usual image commands work. --- diff --git a/etc/NEWS b/etc/NEWS index 4a6a0acbbab..ae503f6db3f 100644 --- 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 diff --git a/lisp/image-mode.el b/lisp/image-mode.el index e549b49001e..e2037b9207d 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -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)