diff options
author | teramako | 2010-12-11 03:15:40 +0900 |
---|---|---|
committer | teramako | 2010-12-11 04:07:00 +0900 |
commit | 9fedcce4341b2e0ccf31754a8fa99969f9481a2e (patch) | |
tree | 27ec5707d069021e9faf2918c1cb1f2acf2d3943 | |
parent | cd2a0f8607b5f74a69ff5b3c45269c620352f609 (diff) | |
download | vimperator-plugins-9fedcce4341b2e0ccf31754a8fa99969f9481a2e.tar.bz2 |
delete unnecessary parameter
-rw-r--r-- | panorama.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/panorama.js b/panorama.js index eb5bd27..9c8462d 100644 --- a/panorama.js +++ b/panorama.js @@ -559,7 +559,6 @@ let subCmds = [ tabView.UI.goToTab(currentTab.pinned ? currentTab : apps[apps.length - 1]); } }, { - argCount: "1", bang: true, literal: 0, }, true) /// }}} @@ -577,7 +576,6 @@ let subCmds = [ switchToGroup(args.literalArg); } }, { - argCount: "?", count: true, literal: 0, completer: function (context) completion.tabgroup(context, true), @@ -608,7 +606,6 @@ let subCmds = [ } TV.moveTabTo(currentTab, group.id); } ,{ - argCount: "1", bang: true, literal: 0, completer: function (context) completion.tabgroup(context, true), @@ -649,7 +646,6 @@ let subCmds = [ } group.closeAll(); }, { - argCount: "?", literal: 0, completer: function (context) completion.tabgroup(context, false), }, true) // }}} @@ -671,7 +667,6 @@ let subCmds = [ TV.moveTabTo(tab, activeGroup.id); gBrowser.mTabContainer.selectedItem = tab; }, { - argCount: "1", literal: 0, completer: function (context) completion.buffer(context, completion.buffer.GROUPS | completion.buffer.ORPHANS), }, true) // }}} @@ -693,7 +688,6 @@ commands.addUserCommand(["panorama"], "Parnorama", liberator.assert(cmd, "No such sub-command: " + subCmdName); cmd.execute(subArgs, bang, count, {}); }, { - argCount: "*", bang: true, literal: 0, options: [ |