emacs-framebuffer

Emacs library to show images and documents in console using Linux framebuffer
Log | Files | Refs

commit f4ce24c1f53f4483ed4fa19e27e6710fbbbd9872
parent 37a749f7d940b69fd3eefaa2e91678c76ffc5b8c
Author: Tomas Hlavaty <tom@logand.com>
Date:   Mon, 15 Jun 2020 23:11:18 +0200

handle short tif extension as tiff

Diffstat:
Memacs-framebuffer.el | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/emacs-framebuffer.el b/emacs-framebuffer.el @@ -295,9 +295,9 @@ (add-to-list 'auto-mode-alist '("\\.jpe?g\\'" . framebuffer-image-mode)) (add-to-list 'auto-mode-alist '("\\.bmp\\'" . framebuffer-image-mode)) (add-to-list 'auto-mode-alist '("\\.gif\\'" . framebuffer-image-mode)) - (add-to-list 'auto-mode-alist '("\\.tiff\\'" . framebuffer-image-mode)) (add-to-list 'auto-mode-alist '("\\.ppm\\'" . framebuffer-image-mode)) (add-to-list 'auto-mode-alist '("\\.pnm\\'" . framebuffer-image-mode)) + (add-to-list 'auto-mode-alist '("\\.tiff?\\'" . framebuffer-image-mode)) (add-to-list 'auto-mode-alist '("\\.xpm\\'" . framebuffer-image-mode)) (with-eval-after-load 'dired (define-key dired-mode-map "I" 'framebuffer-image-file-dired)