diff --git a/common/locale/en-US/map.xml b/common/locale/en-US/map.xml
index ba7c88a7..dab43bc0 100644
--- a/common/locale/en-US/map.xml
+++ b/common/locale/en-US/map.xml
@@ -66,7 +66,7 @@
prefixed with one of the above letters. For instance,
:imap creates a new key mapping in Insert mode, while
:cunmap removes a key mapping from Command Line mode.
- Other modes can be specified using the -modes option described below.
+ Other modes can be specified using the -modes option described below.
@@ -601,7 +601,7 @@
By default, user commands accept no arguments. This can be changed by specifying
- the -nargs option.
+ the -nargs option.
The valid values are:
@@ -619,7 +619,7 @@
Completion for arguments to user-defined commands is not available by default.
Completion can be enabled by specifying one of the following arguments to the
- -complete option when defining the command.
+ -complete option when defining the command.
@@ -628,7 +628,7 @@
Custom completion can be provided by specifying the
- custom,thing argument to -complete. If
+ custom,thing argument to -complete. If
thing evaluates to a function (i.e., it is a variable holding
a function value, or a string containing the definition itself), it
is called with two arguments: a completion context, and an object
@@ -664,7 +664,7 @@
Count handling
- By default, user commands do not accept a count. Use the -count option if
+ By default, user commands do not accept a count. Use the -count option if
you'd like to have a count passed to your user command. This will then be
available for expansion as <count> in the replacement.
@@ -673,14 +673,14 @@
By default, a user command does not have a special version, i.e. a version
- executed with the ! modifier. Providing the -bang option will enable this
+ executed with the ! modifier. Providing the -bang option will enable this
and <bang> will be available in the replacement.
Command description
- The command's description text can be set with -description. Otherwise it will
+ The command's description text can be set with -description. Otherwise it will
default to "User-defined command".
diff --git a/common/locale/en-US/options.xml b/common/locale/en-US/options.xml
index 7a37f164..d7dadf5a 100644
--- a/common/locale/en-US/options.xml
+++ b/common/locale/en-US/options.xml
@@ -14,7 +14,7 @@
&dactyl.appName; has a number of internal variables and switches which can be set to
- achieve special effects. These options come in 8 forms:
+ achieve special effects. These options come in the following forms:
@@ -53,7 +53,7 @@
- regexpmap
-
- A combination of a stringmap and a regexplist. Each key
+ A combination of a stringmap and a regexplist. Each key
in the key:value pair is a regexp. If the regexp begins with a
!, the sense of the match is negated, such that a non-matching
expression will be considered a match and vice versa.
@@ -472,7 +472,7 @@
-
'cl' 'cookielifetime'
- 'cookielifetime'
+ 'cookielifetime' 'cl'
&option.cookielifetime.type;
&option.cookielifetime.default;
@@ -533,7 +533,7 @@
-
'dls' 'dlsort' 'downloadsort'
- 'downloadsort'
+ 'downloadsort' 'dlsort' 'dls'
stringlist
-active,+filename
@@ -993,7 +993,7 @@
-
'jt' 'jumptags'
- 'jumptags'
+ 'jumptags' 'jt'
&option.jumptags.type;
&option.jumptags.default;
@@ -1331,7 +1331,7 @@
-
'spl' 'spelllang'
- 'spelllang'
+ 'spelllang' 'spl'
&option.spelllang.type;
&option.spelllang.default;
diff --git a/common/locale/en-US/repeat.xml b/common/locale/en-US/repeat.xml
index c8696839..e4e7d4da 100644
--- a/common/locale/en-US/repeat.xml
+++ b/common/locale/en-US/repeat.xml
@@ -27,8 +27,7 @@
Repeat the last keyboard mapping count times. Note that,
- unlike in Vim, this does not apply solely to editing commands,
- mainly because &dactyl.appName; doesn't have them.
+ unlike in Vim, this also applies to other than editing commands.
@@ -166,7 +165,7 @@
- builtin
- The default group for builtin items. Can not be modified in any way by scripts.
- - default
- The default group for this script.
+ - default
- The default group for the script containing this :group command.
- user
- The default group for the command line and &dactyl.name;rc.
diff --git a/pentadactyl/NEWS b/pentadactyl/NEWS
index 2799d229..18427ed5 100644
--- a/pentadactyl/NEWS
+++ b/pentadactyl/NEWS
@@ -82,8 +82,8 @@
- Added site-specific mapping groups and related command
changes. [b6]
- Added 'timeout' and 'timeoutlen' options. [b6]
- - Added n_{, n_}, n_[, n_], and n_g] mappings. [b7]
- - Added n_[d and n_]d. [b8]
+ - Added n_{, n_}, n_[ and n_] mappings. [b7]
+ - Added n_g], n_[d and n_]d. [b8]
- Added to execute a builtin mapping. [b6]
- Added l and s to aid in the construction of
macros. [b6]