diff options
-rw-r--r-- | gnus.org | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -560,7 +560,7 @@ (not (beginning-of-line)))) (if external (jao-browse-with-external-browser) - (w3m-safe-view-this-url))))) + (browse-url (jao-url-around-point)))))) (defun jao-gnus-open-enclosure (&optional playp) (interactive "P") @@ -612,7 +612,8 @@ ("E" (jao-gnus-open-enclosure t) "Play enclosure")) "Images" (("z" w3m-lnum-zoom-in-image "Zoom image at point") - ("I" w3m-view-image "View image at point") + ("I" (if (fboundp 'w3m-view-image) (w3m-view-image) (eww-display-image)) + "View image at point") ("i" jao-gnus-show-images "Show images")) "Toot" (("t" jao-gnus-tweet-link "Tweet article") |