summaryrefslogtreecommitdiff
path: root/helm-net.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2017-10-17 07:45:55 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2017-10-17 07:45:55 +0200
commitd204233534ef488dbe3d0c3bade9de8a8a426e4d (patch)
tree80ba4732c3bb8315b6b484df3a4b2be9c71feae9 /helm-net.el
parentba422033ec8142af5a9f18cff266f322737d7ef7 (diff)
Add autoload cookies for browser commands
Diffstat (limited to 'helm-net.el')
-rw-r--r--helm-net.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/helm-net.el b/helm-net.el
index eee591e0..55147bf7 100644
--- a/helm-net.el
+++ b/helm-net.el
@@ -434,6 +434,7 @@ Follows any redirections from Wikipedia, and stores results in
(when (string= event "finished\n")
(message "%s process %s" process event))))))
+;;;###autoload
(defun helm-browse-url-firefox (url &optional _ignore)
"Same as `browse-url-firefox' but detach from emacs.
@@ -451,6 +452,7 @@ NOTE: Probably not supported on some systems (e.g Windows)."
helm-browse-url-firefox-new-window
(shell-quote-argument url)))))
+;;;###autoload
(defun helm-browse-url-opera (url &optional _ignore)
"Browse URL with opera browser and detach from emacs.
@@ -466,17 +468,20 @@ NOTE: Probably not supported on some systems (e.g Windows)."
(format "(%s %s &)"
helm-browse-url-opera-program (shell-quote-argument url)))))
+;;;###autoload
(defun helm-browse-url-chromium (url &optional _ignore)
"Browse URL with google chrome browser."
(interactive "sURL: ")
(helm-generic-browser
url helm-browse-url-chromium-program))
+;;;###autoload
(defun helm-browse-url-uzbl (url &optional _ignore)
"Browse URL with uzbl browser."
(interactive "sURL: ")
(helm-generic-browser url helm-browse-url-uzbl-program "-u"))
+;;;###autoload
(defun helm-browse-url-conkeror (url &optional _ignore)
"Browse URL with conkeror browser."
(interactive "sURL: ")