mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-31 20:02:27 +01:00
whitespace formatting improvements
This commit is contained in:
@@ -430,7 +430,7 @@ function Options() //{{{
|
|||||||
short_help: "Maximum number of simultaneously shown hints",
|
short_help: "Maximum number of simultaneously shown hints",
|
||||||
help: "If you want to speed up display of hints, choose a smaller value",
|
help: "If you want to speed up display of hints, choose a smaller value",
|
||||||
default_value: 250,
|
default_value: 250,
|
||||||
validator: function (value) { if (value>=1 && value <=1000) return true; else return false; }
|
validator: function (value) { if (value >= 1 && value <= 1000) return true; else return false; }
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addOption(new Option(["preload"], "boolean",
|
addOption(new Option(["preload"], "boolean",
|
||||||
@@ -445,10 +445,10 @@ function Options() //{{{
|
|||||||
{
|
{
|
||||||
short_help: "Default height for preview window",
|
short_help: "Default height for preview window",
|
||||||
help: "Value must be between 1 and 50. If the value is too high, completions may cover the command-line. " +
|
help: "Value must be between 1 and 50. If the value is too high, completions may cover the command-line. " +
|
||||||
"Close the preview window with <code class=\"command\">:pclose</code>." +
|
"Close the preview window with <code class=\"command\">:pclose</code>.<br/>" +
|
||||||
"NOTE: Option currently disabled",
|
"NOTE: Option currently disabled",
|
||||||
default_value: 10,
|
default_value: 10,
|
||||||
validator: function (value) { if (value>=1 && value <=50) return true; else return false; }
|
validator: function (value) { if (value >= 1 && value <= 50) return true; else return false; }
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addOption(new Option(["scroll", "scr"], "number",
|
addOption(new Option(["scroll", "scr"], "number",
|
||||||
@@ -458,7 +458,7 @@ function Options() //{{{
|
|||||||
"When a <code class=\"argument\">{count}</code> is specified to the <code class=\"mapping\"><C-u></code> or <code class=\"mapping\"><C-d></code> commands this is used to set the value of <code class=\"option\">'scroll'</code> and also used for the current command. " +
|
"When a <code class=\"argument\">{count}</code> is specified to the <code class=\"mapping\"><C-u></code> or <code class=\"mapping\"><C-d></code> commands this is used to set the value of <code class=\"option\">'scroll'</code> and also used for the current command. " +
|
||||||
"The value can be reset to half the window height with <code class=\"command\">:set scroll=0</code>.",
|
"The value can be reset to half the window height with <code class=\"command\">:set scroll=0</code>.",
|
||||||
default_value: 0,
|
default_value: 0,
|
||||||
validator: function (value) { if (value >= 0) return true; else return false; }
|
validator: function (value) { if (value >= 0 && value <= 2) return true; else return false; }
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addOption(new Option(["showmode", "smd"], "boolean",
|
addOption(new Option(["showmode", "smd"], "boolean",
|
||||||
@@ -517,7 +517,7 @@ function Options() //{{{
|
|||||||
help: "When bigger than zero, Vimperator will give messages about what it is doing. They are printed to the error console which can be shown with <code class=\"command\">:javascript!</code>.<br/>" +
|
help: "When bigger than zero, Vimperator will give messages about what it is doing. They are printed to the error console which can be shown with <code class=\"command\">:javascript!</code>.<br/>" +
|
||||||
"The highest value is 9, being the most verbose mode.",
|
"The highest value is 9, being the most verbose mode.",
|
||||||
default_value: 0,
|
default_value: 0,
|
||||||
validator: function (value) { if (value>=0 && value <=9) return true; else return false; }
|
validator: function (value) { if (value >= 0 && value <= 9) return true; else return false; }
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
addOption(new Option(["wildmode", "wim"], "stringlist",
|
addOption(new Option(["wildmode", "wim"], "stringlist",
|
||||||
|
|||||||
Reference in New Issue
Block a user