mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-19 18:37:58 +01:00
Add n_s and n_S.
This commit is contained in:
@@ -220,6 +220,14 @@ var Browser = Module("browser", XPCOM(Ci.nsISupportsWeakReference, ModuleBase),
|
||||
"Open one or more URLs, based on current location",
|
||||
function () { CommandExMode().open("open " + decode(buffer.uri.spec)); });
|
||||
|
||||
mappings.add([modes.NORMAL], ["s"],
|
||||
"Open a search prompt",
|
||||
function () { CommandExMode().open("open " + options["defsearch"] + " "); });
|
||||
|
||||
mappings.add([modes.NORMAL], ["S"],
|
||||
"Open a search prompt for a new tab",
|
||||
function () { CommandExMode().open("tabopen " + options["defsearch"] + " "); });
|
||||
|
||||
mappings.add([modes.NORMAL], ["t"],
|
||||
"Open one or more URLs in a new tab",
|
||||
function () { CommandExMode().open("tabopen "); });
|
||||
|
||||
Reference in New Issue
Block a user