+ Execute commands until the next :elseif, :else,
+ or :endif only if the JavaScript expression expr
+ evaluates to a true value.
+
+
+
+
+
+ :else :el
+ :else
+
+
+ Execute commands until the next :endif only if the
+ previous conditionals were not executed.
+
+
+
+
diff --git a/common/locale/en-US/index.xml b/common/locale/en-US/index.xml
index fa87d917..35d45308 100644
--- a/common/locale/en-US/index.xml
+++ b/common/locale/en-US/index.xml
@@ -242,7 +242,10 @@ This file contains a list of all available commands, mappings and options.
:echo
Echo the expression
:echoerr
Echo the expression as an error message
:echomsg
Echo the expression as an informational message
+
:else
Execute commands until the next :endif only if the previous conditionals were not executed
+
:elseif
Execute commands until the next :elseif, :else, or :endif only if the argument returns true
:emenu
Execute the specified menu item from the command line
+
:endif
Ends a string of :if/:elseif/:else conditionals
:execute
Execute the argument as an Ex command
:extadd
Install an extension
:extdelete
Uninstall an extension
@@ -262,6 +265,7 @@ This file contains a list of all available commands, mappings and options.
:history
Show recently visited URLs
:iabbrev
Abbreviate a key sequence in Insert mode
:iabclear
Remove all abbreviations in Insert mode
+
:if
Execute commands until the next :elseif, :else, or :endif only if the argument returns true
:imap
Map a key sequence in Insert mode
:imapclear
Remove all mappings in Insert mode
:inoremap
Map a key sequence without remapping keys in Insert mode
diff --git a/common/locale/en-US/repeat.xml b/common/locale/en-US/repeat.xml
index 8875b65e..90a04ab4 100644
--- a/common/locale/en-US/repeat.xml
+++ b/common/locale/en-US/repeat.xml
@@ -169,6 +169,8 @@
on a single line, you can use
+
+ Ex command scripts are similar to both entering commands on the
+ command line and to Vim
+ scripts, but with some notable differences.
+
+
+
+ Commands in Ex command scripts can span multiple lines by
+ prefixing the second and further lines with a \
+ character. For instance, the following all define commands whose
+ definitions span multiple lines.
+