mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 09:48:00 +01:00
Move bang/count to args.
This commit is contained in:
@@ -275,15 +275,13 @@ const config = { //{{{
|
||||
|
||||
commands.add(["o[pen]", "e[dit]"],
|
||||
"Open one or more URLs in the current tab",
|
||||
function (args, special)
|
||||
function (args)
|
||||
{
|
||||
args = args.string;
|
||||
|
||||
if (args)
|
||||
if (args.string)
|
||||
{
|
||||
liberator.open(args);
|
||||
liberator.open(args.string);
|
||||
}
|
||||
else if (special)
|
||||
else if (args.bang)
|
||||
BrowserReloadSkipCache();
|
||||
else
|
||||
BrowserReload();
|
||||
|
||||
Reference in New Issue
Block a user