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

Typo and general idiocy fixes. Kill 'linksearch'.

This commit is contained in:
Kris Maglione
2010-12-17 12:30:51 -05:00
parent 714870525e
commit 9fb3febe95
16 changed files with 50 additions and 74 deletions

View File

@@ -1703,17 +1703,17 @@ const CommandLine = Module("commandline", {
{ validator: function (value) value >= 0 });
options.add(["maxitems"],
"Maximum number of items to display at once",
"Maximum number of completion items to display at once",
"number", 20,
{ validator: function (value) value >= 1 });
options.add(["messages", "msgs"],
"Number of messages to store in the message history",
"Number of messages to store in the :message history",
"number", 100,
{ validator: function (value) value >= 0 });
options.add(["more"],
"Pause the message list window when more than one screen of listings is displayed",
"Pause the message list window when the full output will not fit on one page",
"boolean", true);
options.add(["showmode", "smd"],