emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b2581ee 2/2: Allow browsing an URL explicitly with an internal or


From: Tassilo Horn
Subject: master b2581ee 2/2: Allow browsing an URL explicitly with an internal or external browser.
Date: Thu, 7 May 2020 13:45:16 -0400 (EDT)

branch: master
commit b2581eea1be1468a15927be00ba2f3f399af33a1
Author: Tassilo Horn <address@hidden>
Commit: Tassilo Horn <address@hidden>

    Allow browsing an URL explicitly with an internal or external browser.
    
    * lisp/net/browse-url.el (browse-url-with-browser-kind): New command.
---
 lisp/net/browse-url.el | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/lisp/net/browse-url.el b/lisp/net/browse-url.el
index 6dc9f89..d7b8521 100644
--- a/lisp/net/browse-url.el
+++ b/lisp/net/browse-url.el
@@ -929,6 +929,34 @@ Optional prefix argument ARG non-nil inverts the value of 
the option
       (error "No URL found"))))
 
 ;;;###autoload
+(defun browse-url-with-browser-kind (kind url &optional arg)
+  "Browse URL with a browser of the given browser KIND.
+KIND is either `internal' or `external'.
+
+When called interactively, the default browser kind is the
+opposite of the browser kind of `browse-url-browser-function'."
+  (interactive
+   (let* ((url-arg (browse-url-interactive-arg "URL: "))
+          ;; Default to the inverse kind of the default browser.
+          (default (if (eq (browse-url--browser-kind
+                            browse-url-browser-function (car url-arg))
+                           'internal)
+                       'external
+                     'internal))
+          (k (completing-read
+              (format "Browser kind (default %s): " default)
+              '(internal external)
+              nil t nil nil
+              default)))
+     (cons k url-arg)))
+  (let ((function (browse-url-select-handler url kind)))
+    (unless function
+      (setq function (if (eq kind 'external)
+                         #'browse-url-default-browser
+                       #'eww)))
+    (funcall function url arg)))
+
+;;;###autoload
 (defun browse-url-at-mouse (event)
   "Ask a WWW browser to load a URL clicked with the mouse.
 The URL is the one around or before the position of the mouse click



reply via email to

[Prev in Thread] Current Thread [Next in Thread]