From 9bdc1cc490fd93c8671b5c23ff3aea34f4228136 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 11 Nov 2007 03:01:12 +0000 Subject: [PATCH] make it clear that the arg is optional for :tabnext and :tabprevious --- content/commands.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/commands.js b/content/commands.js index f0fdebdb..bfb79600 100644 --- a/content/commands.js +++ b/content/commands.js @@ -1497,7 +1497,7 @@ vimperator.Commands = function() //{{{ } }, { - usage: ["tabn[ext] {count}"], + usage: ["tabn[ext] [count]"], short_help: "Switch to the next or [count]th tab", help: "Cycles to the first tab when the last is selected and {count} is not specified." } @@ -1540,7 +1540,7 @@ vimperator.Commands = function() //{{{ 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", help: "Wraps around from the first tab to the last tab." }