emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/helm ec76b7d0ff: Fix helm-browse-url-firefox-new-window de


From: ELPA Syncer
Subject: [nongnu] elpa/helm ec76b7d0ff: Fix helm-browse-url-firefox-new-window default value and settings
Date: Mon, 9 May 2022 12:58:23 -0400 (EDT)

branch: elpa/helm
commit ec76b7d0ffaa77bae47be5b9ee9069601a463d5b
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@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

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