>>107637854
>I'm experiencing similar weirdness with the *image-dired-display-buffer*.
Good to hear that this isn't something only I'm experiencing.
>That's wild that you even had to do that. Good job figuring that out.
Thank you. DESU I literally just copied the code and eyeballed where I thought
something was going wrong.
>>107637953
Great to hear it's working for you as well anon. I've made it an advice now in
case that's something you're interested in:
(define-advice image-dired-display-image (:override (file &optional _ignored))
(setq file (expand-file-name file))
(when (not (file-exists-p file))
(error "No such file: %s" file))
(let ((buf (get-buffer image-dired-display-image-buffer))
Comment too long. Click here to view the full text.