1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 21:17:59 +01:00

make it clear that the arg is optional for :tabnext and :tabprevious

This commit is contained in:
Doug Kearns
2007-11-10 12:02:00 +00:00
parent f2b6db3b72
commit 7e59f88c96

View File

@@ -1944,7 +1944,7 @@ vimperator.Commands = function() //{{{
} }
}, },
{ {
usage: ["tabn[ext] {count}"], usage: ["tabn[ext] [count]"],
short_help: "Switch to the next or [count]th tab", short_help: "Switch to the next or [count]th tab",
help: "Cycles to the first tab when the last is selected and <code class=\"argument\">{count}</code> is not specified." help: "Cycles to the first tab when the last is selected and <code class=\"argument\">{count}</code> is not specified."
} }
@@ -1987,7 +1987,7 @@ vimperator.Commands = function() //{{{
vimperator.echoerr("E488: Trailing characters"); vimperator.echoerr("E488: Trailing characters");
}, },
{ {
usage: ["tabp[revious] {count}"], usage: ["tabp[revious] [count]"],
short_help: "Switch to the previous tab or go [count] tabs back", short_help: "Switch to the previous tab or go [count] tabs back",
help: "Wraps around from the first tab to the last tab." help: "Wraps around from the first tab to the last tab."
} }