blob: a51edd43dbb9914380b6de85dfb8a6af69692be6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="dactyl://content/help.xsl"?>
<!DOCTYPE document SYSTEM "dactyl://content/dtd">
<document
name="message"
title="&dactyl.appName; Messages"
xmlns="&xmlns.dactyl;"
xmlns:dactyl="&xmlns.dactyl;"
xmlns:html="&xmlns.html;">
<h1 tag="messages">Error and informational messages</h1>
<tags>message-history</tags>
<p>
&dactyl.appName; stores all info and error messages in a message
history. The type of info messages output can be controlled by
the <o>verbose</o> option. The maximum number of stored messages
can be limited with the <o>messages</o> option.
</p>
<item>
<tags>:mes :messages</tags>
<spec>:mes<oa>sages</oa></spec>
<description short="true">
<p>Display previously shown messages.</p>
</description>
</item>
<item>
<tags>:messc :messclear</tags>
<spec>:messc<oa>lear</oa></spec>
<description short="true">
<p>Clear the message history.</p>
</description>
</item>
<item>
<tags><![CDATA[g<]]></tags>
<strut/>
<spec>g<</spec>
<description>
<p>
Redisplay the last command output. Only the most recent command's output is
available.
</p>
</description>
</item>
<!-- FIXME: Everything the follows is horrendous. -->
<tags>pager more-prompt</tags>
<code dactyl:highlight="MoreMsg">
-- More --
-- More -- SPACE/d/j: screen/page/line down, b/u/k: up, q: quit
</code>
<p>
This message is displayed when the message window is filled with
messages and the <o>more</o> option is set. It is styled with
the <em>MoreMsg</em> <ex>:highlight</ex> group. When the more
message is shown, the following key mappings are available:
</p>
<dl>
<dt><k name="CR" link="false"/> or j or <k name="Down" link="false"/></dt>
<dd>one more line</dd>
<dt>d</dt>
<dd>down a page (half a screen)</dd>
<dt><k name="Space" link="false"/> or <k name="PageDown" link="false"/></dt>
<dd>down a screen</dd>
<dt>G</dt>
<dd>down all the way, until the hit-enter prompt</dd>
<dt/><dd/>
<dt><k name="BS" link="false"/> or k or <k name="Up" link="false"/></dt>
<dd>one line back</dd>
<dt>u</dt>
<dd>up a page (half a screen)</dd>
<dt>b or <k name="PageUp" link="false"/></dt>
<dd>back a screen</dd>
<dt>g</dt>
<dd>back to the start</dd>
<dt/><dd/>
<dt>q, <k name="Esc" link="false"/> or <k name="C-c"></k></dt>
<dd>stop the listing</dd>
<dt>:</dt>
<dd>stop the listing and enter a command line</dd>
<dt>;</dt>
<dd>start an <t>extended-hints</t> command</dd>
<dt><k name="C-y" link="false"/></dt>
<dd>yank (copy) a modeless selection to the clipboard</dd>
</dl>
</document>
<!-- vim:se sts=4 sw=4 et: -->
|