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

Add some documentation for :help :bar.

This commit is contained in:
Doug Kearns
2010-10-06 23:57:24 +11:00
parent 033ad14e75
commit 3aefc2ef99

View File

@@ -38,7 +38,7 @@
<spec>:</spec>
<description>
<p>
Opens the command-line in Ex mode. This is the mode used
Opens the command line in Ex mode. This is the mode used
for entering the various commands listed in
<t>ex-cmd-index</t>.
</p>
@@ -152,6 +152,68 @@
</description>
</item>
<h2 tag="cmdline-lines">Ex command lines</h2>
<item>
<tags>:bar</tags>
<strut/>
<description>
<p>
Multiple commands, separated by a <em>|</em> can be
given in a single command line and will be executed consecutively.
<em>|</em> can be included as an argument to a command by escaping
it with a backslash. E.g.
<code><ex>:map \| :echo "bar"<k name="CR"/></ex></code>
Several commands process the entire command line string literally.
These commands will include any <em>|</em> as part of their
argument string and so cannot be followed by another command. The
list of these commands is:
<ul>
<li><ex>abbreviate</ex></li>
<li><ex>autocmd</ex></li>
<li><ex>cabbrev</ex></li>
<li><ex>cmap</ex></li>
<li><ex>cnoremap</ex></li>
<li><ex>command</ex></li>
<li><ex>delmacros</ex></li>
<li><ex>delmarks</ex></li>
<li><ex>delqmarks</ex></li>
<li><ex>delstyle</ex></li>
<li><ex>echo</ex></li>
<li><ex>echoerr</ex></li>
<li><ex>echomsg</ex></li>
<li><ex>execute</ex></li>
<li><ex>highlight</ex></li>
<li><ex>iabbrev</ex></li>
<li><ex>imap</ex></li>
<li><ex>inoremap</ex></li>
<li><ex>javascript</ex></li>
<li><ex>let</ex></li>
<li><ex>map</ex></li>
<li><ex>marks</ex></li>
<li><ex>nmap</ex></li>
<li><ex>nnoremap</ex></li>
<li><ex>noremap</ex></li>
<li><ex>open</ex></li>
<li><ex>qmarks</ex></li>
<li><ex>silent</ex></li>
<li><ex>style</ex></li>
<li><ex>styledisable</ex></li>
<li><ex>styleenable</ex></li>
<li><ex>styletoggle</ex></li>
<li><ex>tabopen</ex></li>
<li><ex>toolbarhide</ex></li>
<li><ex>toolbarshow</ex></li>
<li><ex>toolbartoggle</ex></li>
<li><ex>vmap</ex></li>
<li><ex>vnoremap</ex></li>
<li><ex>winopen</ex></li>
</ul>
</p>
</description>
</item>
</document>
<!-- vim:se sts=4 sw=4 et: -->