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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
HEADER
|buffer| |document| +
Vimperator holds exactly one buffer object for each tab. It is usually an
(X)HTML document with advanced features.
section:Buffer{nbsp}information[buffer-information]
|<C-g>| +
||<C-g>||
________________________________________________________________________________
Print the current file name. Also shows some additional file information like
file size or the last modified date.
________________________________________________________________________________
|g<C-g>| +
||g<C-g>||
________________________________________________________________________________
Print file information. Same as [c]:pa[geinfo][c].
________________________________________________________________________________
|:pa| |:pageinfo| +
||:pa[geinfo]||
________________________________________________________________________________
Show various page information. See [c]:help 'pageinfo'[c] for available options.
________________________________________________________________________________
|gf| +
||gf||
________________________________________________________________________________
View source. Opens the source code of the current web site with the internal
editor in the current tab.
________________________________________________________________________________
|gF| +
||gF||
________________________________________________________________________________
View source with an external editor. Opens the source code of the current web
site with the external editor specified by the 'editor' option. For now the
external editor must be able to download and open files from a remote URL.
________________________________________________________________________________
|:vie| |:viewsource|
||:vie[wsource][!] [url]|| +
________________________________________________________________________________
View source code of current document. If [url] is specified then view the
source of that document. When [!] is given, it is opened with the external
editor.
________________________________________________________________________________
section:Motion{nbsp}commands[motion,scrolling]
|^| |0| +
||0||
________________________________________________________________________________
Scroll to the absolute left of the document. Unlike in Vim, [m]0[m] and [m]^[m]
work exactly the same way.
________________________________________________________________________________
|$| +
||$||
________________________________________________________________________________
Scroll to the absolute right of the document
________________________________________________________________________________
|<Home>| |gg| +
||[count]gg||
________________________________________________________________________________
Go to the top of the document. When used with [count] like in [m]35gg[m], it
scrolls to 35% of the document.
________________________________________________________________________________
|<End>| |G| +
||[count]G||
________________________________________________________________________________
Go to the end of the document. When used with [count] like in [m]35G[m], it
scrolls to 35% of the document.
________________________________________________________________________________
|N%| +
||{count}%||
________________________________________________________________________________
Scroll to {count} percent of the document.
________________________________________________________________________________
|<Left>| |h| +
||[count]h||
________________________________________________________________________________
Scroll document to the left. Count is supported: [m]10h[m] will move 10 times as much to the left. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is set).
________________________________________________________________________________
|<C-e>| |<Down>| |j| +
||[count]j||
________________________________________________________________________________
Scroll document down. Count is supported: [m]10j[m] will move 10 times as much down. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is set).
________________________________________________________________________________
|<C-y>| |<Up>| |k| +
||[count]k||
________________________________________________________________________________
Scroll document up. Count is supported: [m]10k[m] will move 10 times as much up. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is set).
________________________________________________________________________________
|<C-d>| +
||[count]<C-d>||
________________________________________________________________________________
Scroll window downwards in the buffer. The number of lines is set by the
'scroll' option which defaults to half a page. If [count] is given 'scroll' is
first set to this value.
________________________________________________________________________________
|<C-u>| +
||[count]<C-u>||
________________________________________________________________________________
Scroll window upwards in the buffer. The number of lines is set by the
'scroll' option which defaults to half a page. If [count] is given 'scroll' is
first set to this value.
________________________________________________________________________________
|<Right>| |l| +
||[count]l||
________________________________________________________________________________
Scroll document to the right. Count is supported: [m]10l[m] will move 10 times as much to the right. +
If the document cannot scroll more, a beep is emitted (unless 'visualbell' is set).
________________________________________________________________________________
|<S-Space>| |<PageUp>| |<C-b>| +
||[count]<C-b>||
________________________________________________________________________________
Scroll up a full page. Scroll window [count] pages Backwards (upwards) in the buffer.
________________________________________________________________________________
|<Space>| |<PageDown>| |<C-f>| +
||[count]<C-f>||
________________________________________________________________________________
Scroll down a full page. Scroll window [count] pages Forwards (downwards) in the buffer.
________________________________________________________________________________
section:Jumping{nbsp}to{nbsp}elements[jumping]
|<Tab>| +
||<Tab>||
________________________________________________________________________________
Advance keyboard focus to the next element.
________________________________________________________________________________
|<S-Tab>| +
||<S-Tab>||
________________________________________________________________________________
Rewind keyboard focus to the previous element.
________________________________________________________________________________
|gi| +
||[count]gi||
________________________________________________________________________________
Focus last used input field. If there is no last input field, it focuses the
first input field. When used with [count] it directly jumps to the [count]th input
field.
________________________________________________________________________________
|]f| +
||[count]]f||
________________________________________________________________________________
Focus next frame. Transfer keyboard focus to the [count]th next frame in
order. The newly focused frame is briefly colored red. Does not wrap.
________________________________________________________________________________
|[f| +
||[count][f||
________________________________________________________________________________
Focus previous frame. Transfer keyboard focus to the [count]th previous frame
in order. The newly focused frame is briefly colored red. Does not wrap.
________________________________________________________________________________
|]]| +
||[count]]]||
________________________________________________________________________________
Follow the link labeled \'next' or \'>' if it exists. Useful when browsing
forums or documentation. Change 'nextpattern' to modify its behavior. It
follows relations between files too.
________________________________________________________________________________
|[[| +
||[count][[||
________________________________________________________________________________
Follow the link labeled \'prev', \'previous' or \'<' if it exists. Useful when
browsing forums or documentation. Change 'previouspattern' to modify its
behavior. It follows relations between files too.
________________________________________________________________________________
section:Zooming[zooming,zoom]
The zooming commands are dependent on two properties - a zoom range and a
series of levels within that range.
The absolute value of the page zoom is limited to a value within the configured
zoom range (default: 30% - 300%). The zoom levels are used by
[m]zi[m]/[m]zo[m], and similar commands, to change the zoom value in steps. The
default zoom levels are 30%, 50%, 67%, 80%, 90%, 100%, 110%, 120%, 133%, 150%,
170%, 200%, 240%, 300%.
The available zoom range can be changed by setting the \'zoom.minPercent' and
\'zoom.maxPercent' Firefox preferences. The zoom levels can be changed using
the \'toolkit.ZoomManager.zoomLevels' preference. Note: The latter is specified
as a list of values between 0 and 1, not as a percentage.
|+| |zi| +
||[count]zi||
________________________________________________________________________________
Enlarge text zoom of current web page. Mnemonic: zoom in
________________________________________________________________________________
|zm| +
||[count]zm||
________________________________________________________________________________
Enlarge text zoom of current web page by a larger amount. Mnemonic: zoom more
________________________________________________________________________________
|-| |zo| +
||[count]zo||
________________________________________________________________________________
Reduce text zoom of current web page. Mnemonic: zoom out
________________________________________________________________________________
|zr| +
||[count]zr||
________________________________________________________________________________
Reduce text zoom of current web page by a larger amount. Mnemonic: zoom reduce
________________________________________________________________________________
|zz| +
||[count]zz||
________________________________________________________________________________
Set text zoom value of current web page. Zoom value can be between 30 and 300%.
If it is omitted, text zoom is reset to 100%.
________________________________________________________________________________
|zI| +
||[count]zI||
________________________________________________________________________________
Enlarge full zoom of current web page. Mnemonic: zoom in
________________________________________________________________________________
|zM| +
||[count]zM||
________________________________________________________________________________
Enlarge full zoom of current web page by a larger amount. Mnemonic: zoom more
________________________________________________________________________________
|zO| +
||[count]zO||
________________________________________________________________________________
Reduce full zoom of current web page. Mnemonic: zoom out
________________________________________________________________________________
|zR| +
||[count]zR||
________________________________________________________________________________
Reduce full zoom of current web page by a larger amount. Mnemonic: zoom reduce
________________________________________________________________________________
|zZ| +
||[count]zZ||
________________________________________________________________________________
Set full zoom value of current web page. Zoom value can be between 30 and
300%. If it is omitted, full zoom is reset to 100%.
________________________________________________________________________________
|:zo| |:zoom|
||:zo[om][!] [value]|| +
||:zo[om][!] +{value} | -{value}|| +
________________________________________________________________________________
Set zoom value of current web page. [value] can be an absolute value between 30
and 300% or a relative value if prefixed with "-" or "+". If [value] is
omitted, zoom is reset to 100%.
Normally this command operates on the text zoom, if used with [!] it operates
on full zoom.
________________________________________________________________________________
section:Copying{nbsp}text[copying,yanking]
When running in X11 the text of the following commands is not only copied to
the clipboard, but also put into the X11 selection, which can be pasted with
the middle mouse button:
|y| +
||y||
________________________________________________________________________________
Yank current location to the clipboard. When running in X11 the location is
also put into the selection, which can be pasted with the middle mouse button.
________________________________________________________________________________
|Y| +
||Y||
________________________________________________________________________________
Copy currently selected text to the system clipboard.
________________________________________________________________________________
section:Alternate{nbsp}style{nbsp}sheets[alternate-stylesheet]
Page authors may specify alternate style sheets for an HTML document. Users
can then switch between these various style sheets, selecting their favorite.
|:pagest| |:pagestyle|
||:pagest[yle] [stylesheet]|| +
________________________________________________________________________________
Select the author style sheet to apply. If [stylesheet] is not specified the
page's default style sheet is used.
All author styling can be removed by setting the 'usermode' option.
________________________________________________________________________________
// vim: set syntax=asciidoc fdm=marker:
|