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

whitespace fixes

This commit is contained in:
Doug Kearns
2007-11-22 12:08:58 +00:00
parent 02dcf850f4
commit 81d4336ccb
4 changed files with 14 additions and 12 deletions

View File

@@ -1645,7 +1645,7 @@ vimperator.Commands = function () //{{{
{ {
usage: ["qma[rk] {a-zA-Z0-9} [url]"], usage: ["qma[rk] {a-zA-Z0-9} [url]"],
shortHelp: "Mark a URL with a letter for quick access", shortHelp: "Mark a URL with a letter for quick access",
help: "You can also mark whole groups like this: <br/>"+ help: "You can also mark whole groups like this: <br/>" +
"<code class=\"command\">:qmark f http://forum1.com, http://forum2.com, imdb some artist</code>" "<code class=\"command\">:qmark f http://forum1.com, http://forum2.com, imdb some artist</code>"
} }
)); ));

View File

@@ -177,7 +177,7 @@ vimperator.help = function (section, easter) //{{{
'<var>$VIMPERATOR_HOME</var> can be used to override the calculated <var>$HOME</var> directory.'; '<var>$VIMPERATOR_HOME</var> can be used to override the calculated <var>$HOME</var> directory.';
var mappings = '<span style="float: right"><code class="tag">mappings</code></span><h2 id="mappings">Mappings</h2>' + var mappings = '<span style="float: right"><code class="tag">mappings</code></span><h2 id="mappings">Mappings</h2>' +
'<p>The denotion of modifier keys is like in Vim, so C- means the Control key, M- the Meta key, A- the Alt key and S- the Shift key.</p>'+ '<p>The denotion of modifier keys is like in Vim, so C- means the Control key, M- the Meta key, A- the Alt key and S- the Shift key.</p>' +
'<table class="vimperator mappings">'; '<table class="vimperator mappings">';
mappings += makeHelpString(vimperator.mappings, "", "", null); mappings += makeHelpString(vimperator.mappings, "", "", null);
mappings += '</table>'; mappings += '</table>';

View File

@@ -107,17 +107,19 @@ vimperator.Mappings = function () //{{{
main[mode] = []; main[mode] = [];
user[mode] = []; user[mode] = [];
} }
//vimperator.modes.forEach(function (mode) { main[mode] = user[mode] = []; });
function addDefaultMap(map) function addDefaultMap(map)
{ {
for (var i = 0; i < map.modes.length; i++) //for (var i = 0; i < map.modes.length; i++)
{ //{
var mode = map.modes[i]; // var mode = map.modes[i];
if (!main[mode]) // //if (!main[mode])
main[mode] = []; // // main[mode] = [];
main[mode].push(map); // main[mode].push(map);
} //}
map.modes.forEach(function (mode) { main[mode].push(map) });
} }
function getMap(mode, cmd, stack) function getMap(mode, cmd, stack)
@@ -1147,7 +1149,7 @@ vimperator.Mappings = function () //{{{
"<li><code class=\"mapping\">y</code> to yank its location</li>" + "<li><code class=\"mapping\">y</code> to yank its location</li>" +
"<li><code class=\"mapping\">Y</code> to yank its text description</li>" + "<li><code class=\"mapping\">Y</code> to yank its text description</li>" +
"</ul>" + "</ul>" +
"Additionally there are two <code class='argument'>{mode}</code>s, which will start an AlwaysHint mode:<br/>"+ "Additionally there are two <code class='argument'>{mode}</code>s, which will start an AlwaysHint mode:<br/>" +
"<ul>" + "<ul>" +
"<li><code class=\"mapping\">f</code> to open its location in the current tab</li>" + "<li><code class=\"mapping\">f</code> to open its location in the current tab</li>" +
"<li><code class=\"mapping\">F</code> to open its location in a new tab</li>" + "<li><code class=\"mapping\">F</code> to open its location in a new tab</li>" +

View File

@@ -477,7 +477,7 @@ vimperator.Options = function () //{{{
shortHelp: "Set the external text editor", shortHelp: "Set the external text editor",
help: "Sets the editor to run when <code class=\"mapping\">&lt;C-i&gt;</code> " + help: "Sets the editor to run when <code class=\"mapping\">&lt;C-i&gt;</code> " +
"is pressed in INSERT and TEXTAREA modes. Note that Vimperator will " + "is pressed in INSERT and TEXTAREA modes. Note that Vimperator will " +
"not behave correctly if the editor forks its own process, such as with "+ "not behave correctly if the editor forks its own process, such as with " +
"gvim without the -f argument.", "gvim without the -f argument.",
defaultValue: "gvim -f" defaultValue: "gvim -f"
} }
@@ -631,7 +631,7 @@ vimperator.Options = function () //{{{
"<ul>" + "<ul>" +
"<li><b>0</b>: Force to open in the current tab (NOTE: this can stop some web sites from working correctly!)</li>" + "<li><b>0</b>: Force to open in the current tab (NOTE: this can stop some web sites from working correctly!)</li>" +
"<li><b>1</b>: Always open in a new tab</li>" + "<li><b>1</b>: Always open in a new tab</li>" +
"<li><b>2</b>: Open in a new window if it has a specific requested size (default in Firefox)</li>"+ "<li><b>2</b>: Open in a new window if it has a specific requested size (default in Firefox)</li>" +
"<li><b>3</b>: Always open in a new window</li>" + "<li><b>3</b>: Always open in a new window</li>" +
"</ul>" + "</ul>" +
"NOTE: This option does not change the popup blocker of Firefox in any way.", "NOTE: This option does not change the popup blocker of Firefox in any way.",