From 90ce247e46b90bf2a2a0432f68d91a4d4ab59eaa Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Tue, 9 Oct 2007 03:09:01 +0000 Subject: [PATCH] fixed typo --- content/commands.js | 3 ++- content/mappings.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/content/commands.js b/content/commands.js index 9bb5724f..06065dfe 100644 --- a/content/commands.js +++ b/content/commands.js @@ -282,7 +282,8 @@ function Commands() //{{{ { usage: ["[count]bd[elete][!]"], short_help: "Delete current buffer (=tab)", - help: "Count is supported, :2bd removes two tabs and the one to the right is selected.
Do :bdelete! to select the tab to the left after removing the current tab." + help: "Count is supported, :2bd removes two tabs and the one to the right is selected. " + + "Do :bdelete! to select the tab to the left after removing the current tab." } )); addDefaultCommand(new Command(["beep"], diff --git a/content/mappings.js b/content/mappings.js index dc316da8..67d37eb1 100644 --- a/content/mappings.js +++ b/content/mappings.js @@ -423,7 +423,7 @@ function Mappings() //{{{ function(count) { vimperator.tabs.remove(getBrowser().mCurrentTab, count, false, 0); }, { short_help: "Delete current buffer (=tab)", - help: "Count is supported, 2d removes the current and next tab and the one the right is selected. " + + help: "Count is supported, 2d removes the current and next tab and the one to the right is selected. " + "Does not wrap if [count] is larger than available tabs to the right.", flags: Mappings.flags.COUNT } @@ -432,7 +432,7 @@ function Mappings() //{{{ function(count) { vimperator.tabs.remove(getBrowser().mCurrentTab, count, true, 0); }, { short_help: "Delete current buffer (=tab)", - help: "Count is supported, 2D removes the current and previous tab and the one the left is selected. " + + help: "Count is supported, 2D removes the current and previous tab and the one to the left is selected. " + "Does not wrap if [count] is larger than available tabs to the left.", flags: Mappings.flags.COUNT }