diff options
author | teramako | 2011-01-22 23:17:41 +0900 |
---|---|---|
committer | teramako | 2011-01-22 23:17:41 +0900 |
commit | 997d493569ac41b2f4ee2c4349404438677f5753 (patch) | |
tree | 9138b13360e85c1e230cc27ad3c95275d43b0867 | |
parent | b8f4606c54e50f277fd6b03615ae64fcd788dc28 (diff) | |
download | vimperator-plugins-997d493569ac41b2f4ee2c4349404438677f5753.tar.bz2 |
add short command name
-rw-r--r-- | panorama.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/panorama.js b/panorama.js index 9631bb5..aa6880f 100644 --- a/panorama.js +++ b/panorama.js @@ -2,7 +2,7 @@ * Use at your OWN RISK. */ let INFO = <> -<plugin name="panorama" version="0.6.4" +<plugin name="panorama" version="0.6.5" href="https://github.com/vimpr/vimperator-plugins/blob/master/panorama.js" summary="Add supports for Panorama" lang="en-US" @@ -105,7 +105,7 @@ let INFO = <> </item> <item> <tags>title</tags> - <spec>title <a>title</a> <oa>GroupName</oa></spec> + <spec>t<oa>itle</oa> <a>title</a> <oa>GroupName</oa></spec> <description> <p>update <a>GroupName</a>'s title to <a>title</a>.</p> <p>if omitted <a>GroupName</a>, update the current group.</p> @@ -722,7 +722,7 @@ let subCmds = [ /** * SubCommand title {{{ */ - new Command(["title"], "set group title", + new Command(["t[itle]"], "set group title", function (args) { let title = args[0], groupName = args.literalArg; |