* net/shr.el (shr-mouse-browse-url): New command and keystroke.
Fixes: debbugs:14815
This commit is contained in:
parent
47cc115603
commit
8ba8eec59b
2 changed files with 10 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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'."
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue