There are two buffers in image-dired
, one is the thumbnail buffer *image-dired*
, the other is the displayed image buffer *image-dired-display-image*
.
When I type return on an image thumbnail, the focus is switched to the displayed image buffer.
Is there a setting that will make the focus stay in the thumbnail buffer? What about making the displayed image buffer follow the focus in the thumbnail buffer without hitting return?
Edit: Turns out the culprit is shackle. If you use it, the default behaviour is restored with:
(setq shackle-rules
'(("\\`\\*image-dired.*?\\*\\'" :regexp t :select nil)
(image-dired-thumbnail-mode :select nil)
(image-dired-image-display-mode :select nil))
shackle-default-rule '(:select t))