* net/shr.el (shr-mouse-browse-url): New command and keystroke.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Fri, 19 Jul 2013 14:57:28 +0000 (16:57 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Fri, 19 Jul 2013 14:57:28 +0000 (16:57 +0200)
Fixes: debbugs:14815

lisp/ChangeLog
lisp/net/shr.el

index 5ab2e41..6b99c57 100644 (file)
@@ -1,5 +1,8 @@
 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * net/shr.el (shr-mouse-browse-url): New command and keystroke
+       (bug#14815).
+
        * net/eww.el (eww-process-text-input): Allow inputting when the
        point is at the start of the line, as the properties aren't
        front-sticky.
index 83f7596..6ddf8d2 100644 (file)
@@ -143,6 +143,7 @@ cid: URL as the argument.")
     (define-key map [tab] 'shr-next-link)
     (define-key map [backtab] 'shr-previous-link)
     (define-key map [follow-link] 'mouse-face)
+    (define-key map [mouse-2] 'shr-mouse-browse-url)
     (define-key map "I" 'shr-insert-image)
     (define-key map "w" 'shr-copy-url)
     (define-key map "u" 'shr-copy-url)
@@ -657,6 +658,12 @@ size, and full-buffer size."
            (forward-line 1)
          (goto-char end))))))
 
+(defun shr-mouse-browse-url (ev)
+  "Browse the URL under the mouse cursor."
+  (interactive "e")
+  (mouse-set-point ev)
+  (shr-browse-url))
+
 (defun shr-browse-url (&optional external)
   "Browse the URL under point.
 If EXTERNAL, browse the URL using `shr-external-browser'."