|
| From: | Juri Linkov |
| Subject: | bug#8615: Please make sure v q removes the buffer for JPGs just like it does for other files |
| Date: | Thu, 08 Dec 2011 11:01:04 +0200 |
| User-agent: | Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (x86_64-pc-linux-gnu) |
> I only want viewing of images, and OK maybe directories too to disappear
> from the buffer list upon 'q'. The rest is overkill. I like the
> *compilation* buffer etc. to stay around even if no running process. Help.
Then bind them separately:
(eval-after-load "image-mode"
'(progn
(define-key image-mode-map "q"
(lambda () (interactive) (quit-window (not current-prefix-arg))))))
(eval-after-load "dired"
'(progn
(define-key dired-mode-map "q"
(lambda () (interactive) (quit-window (not current-prefix-arg))))))
| [Prev in Thread] | Current Thread | [Next in Thread] |