* lisp/image-dired.el (image-dired-external-viewer): Support feh.

This commit is contained in:
Stefan Kangas 2021-10-24 12:20:35 +02:00
parent c7f53824a8
commit 3eca2ad2a1

View file

@ -504,11 +504,12 @@ with the comment."
;; dired-view-command-alist.
(cond ((executable-find "display"))
((executable-find "xli"))
((executable-find "qiv") "qiv -t"))
((executable-find "qiv") "qiv -t")
((executable-find "feh") "feh"))
"Name of external viewer.
Including parameters. Used when displaying original image from
`image-dired-thumbnail-mode'."
:version "27.1"
:version "28.1"
:type '(choice string
(const :tag "Not Set" nil)))