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
|
HEADER
section:Various{nbsp}commands[various]
|:beep| +
||:beep||
________________________________________________________________________________
Play a system beep.
________________________________________________________________________________
|<C-l>| |CTRL-L| |:redr| |:redraw| +
||:redr[aw]||
________________________________________________________________________________
Redraws the screen. Useful to update the screen halfway executing a script or function.
________________________________________________________________________________
|:norm| |:normal|
||:norm[al][!] {commands}|| +
________________________________________________________________________________
Execute Normal mode commands {commands}. This makes it possible to execute
Normal mode commands typed on the command line. {commands} is executed like it
is typed. If the [!] is given, mappings will not be used. {commands} should be
a complete command. {commands} cannot start with a space. Put 1 space before
it, 1 space is one space.
________________________________________________________________________________
|:run| |:!| +
||:!{cmd}||
________________________________________________________________________________
Run a command. Runs {cmd} through system() and displays its output. Any \'!' in
{cmd} is replaced with the previous external command, but not when there is a
backslash before the \'!', then the backslash is removed.
Warning: Input redirection (< foo) not done, also do not run commands which
require stdin or it will hang Firefox! It is possible to launch background
processes, though (e.g. ':! xterm &').
________________________________________________________________________________
|:sil| |:silent| +
||:sil[ent] {command}||
________________________________________________________________________________
Execute a command silently. Normal messages and error messages generated by the
command invocation will not be given and will not be added to the message
history.
________________________________________________________________________________
|:ve| |:version| +
||:ve[rsion][!]||
________________________________________________________________________________
Show version information. You can show the Firefox version page with
[c]:version![c].
________________________________________________________________________________
section:Online{nbsp}help[online-help]
|<F1>| |:help| |:h| |help|
||:h[elp] [a][subject][a]|| +
||<F1>||
________________________________________________________________________________
Open help window. The default page, as specified by 'helpfile' is shown unless
[a][subject][a] is specified. If you need help for a specific topic, try
[c]:help overview[c].
________________________________________________________________________________
|:exu| |:exusage| +
||:exu[sage][!]||
________________________________________________________________________________
Show help on Ex commands. If [!] is given then the help is listed in the
command output window.
________________________________________________________________________________
|:optionu| |:optionusage| +
||:optionu[sage][!]||
________________________________________________________________________________
Show help on options. If [!] is given then the help is listed in the command
output window.
________________________________________________________________________________
|:viu| |:viusage| +
||:viu[sage][!]||
________________________________________________________________________________
Show help on Normal mode commands. If [!] is given then the help is listed in
the command output window.
________________________________________________________________________________
|42| +
What is the meaning of life, the universe and everything?
Douglas Adams, the only person who knew what this question really was about is
now dead, unfortunately. So now you might wonder what the meaning of death
is...
section:Uncategorized{nbsp}help[uncategorized]
|<C-[>| |<Esc>| +
||<Esc>||
________________________________________________________________________________
Focus content. Exits Command-line or Hints mode and returns to Normal
mode. Also focuses the web page in case a form field has focus and eats
our key presses.
________________________________________________________________________________
|<Insert>| |i| +
||i||
________________________________________________________________________________
Start caret mode. This mode resembles the Vim's Normal mode where you see a
text cursor and can move around. If you want to select text in this mode, press
[m]v[m] to start its Visual mode.
________________________________________________________________________________
// vim: set filetype=asciidoc:
|