1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 14:27:59 +01:00

Improve "command line" <-> "command-line" usage.

--HG--
extra : rebase_source : daa8ab7737ea2e82ce48de78d5ae3e8434735cf4
This commit is contained in:
Doug Kearns
2010-11-05 01:08:01 +11:00
parent 26e130bd0b
commit a33c68877e
5 changed files with 7 additions and 7 deletions

View File

@@ -889,7 +889,7 @@ const Completion = Module("completion", {
}; };
options.add(["altwildmode", "awim"], options.add(["altwildmode", "awim"],
"Define how command line completion works when the Alt key is pressed", "Define how command-line completion works when the Alt key is pressed",
"stringlist", "list:full", "stringlist", "list:full",
wildmode); wildmode);
@@ -920,7 +920,7 @@ const Completion = Module("completion", {
}); });
options.add(["wildmode", "wim"], options.add(["wildmode", "wim"],
"Define how command line completion works", "Define how command-line completion works",
"stringlist", "list:full", "stringlist", "list:full",
wildmode); wildmode);

View File

@@ -1156,8 +1156,8 @@ const Dactyl = Module("dactyl", {
const groups = [ const groups = [
{ {
opts: { opts: {
c: ["Always show the command-line, even when empty"], c: ["Always show the command line, even when empty"],
C: ["Always show the command-line outside of the status line"], C: ["Always show the command line outside of the status line"],
M: ["Always show messages outside of the status line"] M: ["Always show messages outside of the status line"]
}, },
setter: function (opts) { setter: function (opts) {

View File

@@ -1056,7 +1056,7 @@ const Events = Module("events", {
mappings: function () { mappings: function () {
// add the ":" mapping in all but insert mode mappings // add the ":" mapping in all but insert mode mappings
mappings.add(modes.matchModes({ extended: false, input: false }), mappings.add(modes.matchModes({ extended: false, input: false }),
[":"], "Enter command line mode", [":"], "Enter command-line mode",
function () { commandline.open(":", "", modes.EX); }); function () { commandline.open(":", "", modes.EX); });
// focus events // focus events

View File

@@ -453,7 +453,7 @@ const Mappings = Module("mappings", {
}, },
{ {
names: ["-silent", "-s", "<silent>", "<Silent>"], names: ["-silent", "-s", "<silent>", "<Silent>"],
description: "Do not echo any generated keys to the command-line" description: "Do not echo any generated keys to the command line"
} }
], ],
serialize: function () { serialize: function () {

View File

@@ -365,7 +365,7 @@ This file contains a list of all available commands, mappings and options.
<dl> <dl>
<dt><o>activate</o></dt> <dd>Define when tabs are automatically activated</dd> <dt><o>activate</o></dt> <dd>Define when tabs are automatically activated</dd>
<dt><o>altwildmode</o></dt> <dd>Define how command line completion works when the Alt key is pressed</dd> <dt><o>altwildmode</o></dt> <dd>Define how command-line completion works when the Alt key is pressed</dd>
<dt><o>autocomplete</o></dt> <dd>Automatically update the completion list on any key press</dd> <dt><o>autocomplete</o></dt> <dd>Automatically update the completion list on any key press</dd>
<dt><o>banghist</o></dt> <dd>Replace occurrences of ! with the previous command when executing external commands</dd> <dt><o>banghist</o></dt> <dd>Replace occurrences of ! with the previous command when executing external commands</dd>
<dt><o>cdpath</o></dt> <dd>List of directories searched when executing <ex>:cd</ex></dd> <dt><o>cdpath</o></dt> <dd>List of directories searched when executing <ex>:cd</ex></dd>