1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 07:05:47 +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

@@ -137,7 +137,7 @@ function Addressbook() //{{{
commands.add(["contacts", "addr[essbook]"],
"List or open multiple addresses",
function (args, special) { addressbook.list(args.string, special); },
function (args) { addressbook.list(args.string, args.bang); },
{ bang: true });
/////////////////////////////////////////////////////////////////////////////}}}