1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 02:44:12 +01:00

many small help fixes

This commit is contained in:
Martin Stubenschrott
2007-08-16 09:31:37 +00:00
parent d672382234
commit 0c7844dbeb
5 changed files with 97 additions and 90 deletions

View File

@@ -417,7 +417,8 @@ function Options() //{{{
{
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. " +
"Close the preview window with <code class=\"command\">:pclose</code>.",
"Close the preview window with <code class=\"command\">:pclose</code>." +
"NOTE: Option currently disabled",
default_value: 10,
validator: function (value) { if (value>=1 && value <=50) return true; else return false; }
}