1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-20 20:50:53 -08:00

* 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. ;; dired-view-command-alist.
(cond ((executable-find "display")) (cond ((executable-find "display"))
((executable-find "xli")) ((executable-find "xli"))
((executable-find "qiv") "qiv -t")) ((executable-find "qiv") "qiv -t")
((executable-find "feh") "feh"))
"Name of external viewer. "Name of external viewer.
Including parameters. Used when displaying original image from Including parameters. Used when displaying original image from
`image-dired-thumbnail-mode'." `image-dired-thumbnail-mode'."
:version "27.1" :version "28.1"
:type '(choice string :type '(choice string
(const :tag "Not Set" nil))) (const :tag "Not Set" nil)))