From 7e59f88c9697b9ee245562d86fe82d9735897e44 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 10 Nov 2007 12:02:00 +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 62e3bbf7..c9731373 100644 --- a/content/commands.js +++ b/content/commands.js @@ -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", help: "Cycles to the first tab when the last is selected and {count} is not specified." } @@ -1987,7 +1987,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." }