Skip to content

Commit 63f8808

Browse files
wetnebtimss
authored andcommitted
Disable urlseparator by default, for #319 (#747)
* Disable urlseparator by default As explained in #319, this separator is too common in URLs and search strings to be a sensible default separator. * When copying and pasting some content to look it up with some search engine (for instance a title or an address); * A comma followed by spaces is also legitimate in a URL! For instance if you put some JSON as a GET parameter in a URL. * Update NEWS: disable urlseparator by default
1 parent f3d5824 commit 63f8808

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/content/browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const Browser = Module("browser", {
5757

5858
options.add(["urlseparator"],
5959
"Set the separator regex used to separate multiple URL args",
60-
"string", ",\\s");
60+
"string", "");
6161

6262
options.add(["yankencodedurl"],
6363
"Set the yank mode copying encoded URL",

vimperator/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
201x-xx-xx:
22
* create README.md
33
* fix search highlighting (hlsearch) in firefox 51
4-
4+
* disable urlseparator by default as its unexpected behaviour irritates users
55

66
2017-02-01:
77
* add option 'newtaburl' to set default URL in new tabs

0 commit comments

Comments
 (0)