1
0
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:
Kris Maglione
2008-11-26 21:53:22 +00:00
parent 20ab9ef0c7
commit 0adf03a6b8
13 changed files with 139 additions and 131 deletions

View File

@@ -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();