branch: elpa/helm
commit ec76b7d0ffaa77bae47be5b9ee9069601a463d5b
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: Thierry Volpiatto <thie...@posteo.net>

    Fix helm-browse-url-firefox-new-window default value and settings
---
 helm-net.el | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/helm-net.el b/helm-net.el
index e628b5ad26..e085f35bf4 100644
--- a/helm-net.el
+++ b/helm-net.el
@@ -142,13 +142,14 @@ This is a format string, don't forget the `%s'."
   :group 'helm-net
   :type '(alist :key-type string :value-type function))
 
-(defcustom helm-browse-url-firefox-new-window "-new-tab"
+(defcustom helm-browse-url-firefox-new-window "--new-tab"
   "Allow choosing to browse url in new window or new tab.
-Can be \"-new-tab\" (default) or \"-new-window\"."
+Can be \"--new-tab\" (default), \"--new-window\" or \"--private-window\"."
   :group 'helm-net
   :type '(radio
-          (const :tag "New tab" "-new-tab")
-          (const :tag "New window" "-new-window")))
+          (const :tag "New tab" "--new-tab")
+          (const :tag "New window" "--new-window")
+          (const :tag "New private window" "--private-window")))
 
 (defcustom helm-net-curl-switches '("-s" "-L")
   "Arguments list passed to curl when using `helm-net-prefer-curl'."

Reply via email to