mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 17:07:58 +01:00
Make | the default 'urlseparator'.
This commit is contained in:
@@ -51,10 +51,6 @@ const Browser = Module("browser", {
|
|||||||
},
|
},
|
||||||
completer: function (context) completion.charset(context)
|
completer: function (context) completion.charset(context)
|
||||||
});
|
});
|
||||||
|
|
||||||
options.add(["urlseparator"],
|
|
||||||
"Set the separator regex used to separate multiple URL args",
|
|
||||||
"string", ",\\s");
|
|
||||||
},
|
},
|
||||||
|
|
||||||
mappings: function () {
|
mappings: function () {
|
||||||
|
|||||||
@@ -1269,6 +1269,10 @@ const Dactyl = Module("dactyl", {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
options.add(["urlseparator"],
|
||||||
|
"Set the separator regex used to separate multiple URL args",
|
||||||
|
"string", "|");
|
||||||
|
|
||||||
options.add(["verbose", "vbs"],
|
options.add(["verbose", "vbs"],
|
||||||
"Define which info messages are displayed",
|
"Define which info messages are displayed",
|
||||||
"number", 1,
|
"number", 1,
|
||||||
|
|||||||
@@ -1331,10 +1331,10 @@
|
|||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<tags>'urlseparator'</tags>
|
<tags>'us' 'urlseparator'</tags>
|
||||||
<spec>'urlseparator'</spec>
|
<spec>'urlseparator'</spec>
|
||||||
<type>string</type>
|
<type>string</type>
|
||||||
<default>,\s</default>
|
<default>|</default>
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
The regular expression used to split URL lists in commands
|
The regular expression used to split URL lists in commands
|
||||||
|
|||||||
@@ -61,6 +61,7 @@
|
|||||||
* Added 'hintkeys' option.
|
* Added 'hintkeys' option.
|
||||||
* Added "transliterated" option to 'hintmatching'.
|
* Added "transliterated" option to 'hintmatching'.
|
||||||
* Replaced 'focuscontent' with 'strictfocus'.
|
* Replaced 'focuscontent' with 'strictfocus'.
|
||||||
|
* Changed 'urlseparator' default value to '|'
|
||||||
* Added 'wildanchor' option.
|
* Added 'wildanchor' option.
|
||||||
* Added -javascript option to :abbrev and :map.
|
* Added -javascript option to :abbrev and :map.
|
||||||
* Added several new options to :map.
|
* Added several new options to :map.
|
||||||
|
|||||||
Reference in New Issue
Block a user