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

fix trivial help text typos

This commit is contained in:
Doug Kearns
2007-07-19 16:58:07 +00:00
parent 5607e0c6f6
commit f5dc793d0c
2 changed files with 4 additions and 4 deletions

View File

@@ -280,7 +280,7 @@ function Bookmarks() //{{{
title = title.substring(1,title.length-1); title = title.substring(1,title.length-1);
res.title = title; res.title = title;
} }
else /* at last check for an url */ else /* at last check for a URL */
{ {
match_url = str.match(re_url); match_url = str.match(re_url);
if (match_url != null) if (match_url != null)

View File

@@ -321,7 +321,7 @@ function Mappings() //{{{
addDefaultMap(new Map(vimperator.modes.NORMAL, ["gP"], addDefaultMap(new Map(vimperator.modes.NORMAL, ["gP"],
function(count) { openURLsInNewTab(readFromClipboard(), false); }, 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 <code class=\"mapping\">P</code>, but inverts the <code class=\"option\">'activate'</code> option." help: "Works like <code class=\"mapping\">P</code>, but inverts the <code class=\"option\">'activate'</code> option."
} }
)); ));
@@ -404,14 +404,14 @@ function Mappings() //{{{
addDefaultMap(new Map(vimperator.modes.NORMAL, ["p", "<MiddleMouse>"], addDefaultMap(new Map(vimperator.modes.NORMAL, ["p", "<MiddleMouse>"],
function(count) { openURLs(readFromClipboard()); }, 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 <code class=\"option\">'defsearch'</code> option) with <code class=\"mapping\">p</code>." help: "You can also just select some non-URL text, and search for it with the default search engine or keyword (specified by the <code class=\"option\">'defsearch'</code> option) with <code class=\"mapping\">p</code>."
} }
)); ));
addDefaultMap(new Map(vimperator.modes.NORMAL, ["P"], addDefaultMap(new Map(vimperator.modes.NORMAL, ["P"],
function(count) { openURLsInNewTab(readFromClipboard(), true); }, 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 <code class=\"mapping\">p</code>, but opens a new tab.<br/>" + help: "Works like <code class=\"mapping\">p</code>, but opens a new tab.<br/>" +
"Whether the new buffer is activated, depends on the <code class=\"option\">'activate'</code> option." "Whether the new buffer is activated, depends on the <code class=\"option\">'activate'</code> option."
} }