From f5dc793d0c1140a9b522bb518891d5abb648521c Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 19 Jul 2007 16:58:07 +0000 Subject: [PATCH] fix trivial help text typos --- chrome/content/vimperator/bookmarks.js | 2 +- chrome/content/vimperator/mappings.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome/content/vimperator/bookmarks.js b/chrome/content/vimperator/bookmarks.js index c01c7f99..d2a1f809 100644 --- a/chrome/content/vimperator/bookmarks.js +++ b/chrome/content/vimperator/bookmarks.js @@ -280,7 +280,7 @@ function Bookmarks() //{{{ title = title.substring(1,title.length-1); res.title = title; } - else /* at last check for an url */ + else /* at last check for a URL */ { match_url = str.match(re_url); if (match_url != null) diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js index 2434466d..db8992ae 100644 --- a/chrome/content/vimperator/mappings.js +++ b/chrome/content/vimperator/mappings.js @@ -321,7 +321,7 @@ function Mappings() //{{{ addDefaultMap(new Map(vimperator.modes.NORMAL, ["gP"], function(count) { openURLsInNewTab(readFromClipboard(), false); }, { - short_help: "Open (put) an URL based on the current clipboard contents in a new buffer", + short_help: "Open (put) a URL based on the current clipboard contents in a new buffer", help: "Works like P, but inverts the 'activate' option." } )); @@ -404,14 +404,14 @@ function Mappings() //{{{ addDefaultMap(new Map(vimperator.modes.NORMAL, ["p", ""], function(count) { openURLs(readFromClipboard()); }, { - short_help: "Open (put) an URL based on the current clipboard contents in the current buffer", + short_help: "Open (put) a URL based on the current clipboard contents in the current buffer", help: "You can also just select some non-URL text, and search for it with the default search engine or keyword (specified by the 'defsearch' option) with p." } )); addDefaultMap(new Map(vimperator.modes.NORMAL, ["P"], function(count) { openURLsInNewTab(readFromClipboard(), true); }, { - short_help: "Open (put) an URL based on the current clipboard contents in a new buffer", + short_help: "Open (put) a URL based on the current clipboard contents in a new buffer", help: "Works like p, but opens a new tab.
" + "Whether the new buffer is activated, depends on the 'activate' option." }