diff options
author | teramako | 2010-12-08 21:16:16 +0900 |
---|---|---|
committer | teramako | 2010-12-08 21:44:01 +0900 |
commit | 0fd97f2d5679d511f943bfa7499c625a536f303e (patch) | |
tree | 4d08a6fa0cdb4038f9155edb34d70b725bfe4245 /panorama.js | |
parent | e82b73368ef819c9b53ab759df40b7014a44b087 (diff) | |
download | vimperator-plugins-0fd97f2d5679d511f943bfa7499c625a536f303e.tar.bz2 |
add document for :rmgroup
and small fix
Diffstat (limited to 'panorama.js')
-rw-r--r-- | panorama.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/panorama.js b/panorama.js index a14efdf..0f1fb90 100644 --- a/panorama.js +++ b/panorama.js @@ -69,6 +69,13 @@ let INFO = <> <p>Switch group to <a>GroupName</a></p> </description> </item> + <item> + <tags>:rmgroup :rmg</tags> + <spec>:rmg<oa>group</oa><oa>!</oa> <oa>GroupName</oa></spec> + <description> + <p>remove group. The current group is used if ommited <oa>GroupName</oa></p> + </description> + </item> </plugin> </>; @@ -528,9 +535,9 @@ commands.addUserCommand(["rmg[roup]"], "close all tabs in the group", group.closeAll(); }, { argCount: "?", - literalArg: 0, + literal: 0, completer: function (context) completion.tabgroup(context, false), - }); + }, true); // }}} |