1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 02:24:12 +01:00
Files
pentadactyl-pm/vimperator/locale/en-US/various.txt
Ted Pavlic db872c5e65 Added "filetype=asciidoc" to help file modlines.
At the moment, only "syntax=asciidoc" was specified. The
asciidoc_filetype.vim that is distributed with Asciidoc gives the
installer two options -- to either associate every *.txt file with
asciidoc or to try to decipher whether or not the file is an asciidoc
using the first 50 lines.

So it's not given that a developer will open the *.txt files with
ft=asciidoc, and so it's helpful to have it explicitly in the modeline.
2009-01-17 13:02:41 -05:00

119 lines
4.3 KiB
Plaintext

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 a 1 (one) 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 that backslash is removed.
Warning: Input redirection (< foo) not done, also do not run commands which
require stdin or it will hang Firefox!
________________________________________________________________________________
|: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 hint mode and returns to browser
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 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.
________________________________________________________________________________
//|:pc| |:pclose| +
//||:pc[lose]||
//________________________________________________________________________________
//Close preview window on bottom of screen.
//________________________________________________________________________________
// vim: set syntax=asciidoc filetype=asciidoc: