mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 19:24:11 +01:00
Also added rough documentation for insert mode. TODO: Abbreviations should also expand on <CR> and <Tab>, but right now adding <CR> to the mappings.add() has no effect, and adding <Tab> to the mappings.add() breaks tab completion. TODO: Rather than listing non-keyword characters in two places (ui.js and mappings.js), they should be specified in one location (that could someday be trumped by an 'iskeyword' option).
81 lines
2.7 KiB
Plaintext
81 lines
2.7 KiB
Plaintext
HEADER
|
|
|
|
|Command-line-mode| |Command-line| |mode-cmdline| +
|
|
|
|
Command-line mode is used to enter Ex commands (":") and text search patterns
|
|
("/" and "?").
|
|
|
|
|:| +
|
|
||:||
|
|
________________________________________________________________________________
|
|
Start command-line mode. In command-line mode, you can perform extended
|
|
commands, which may require arguments.
|
|
________________________________________________________________________________
|
|
|
|
|
|
section:Command-line{nbsp}editing[cmdline-editing]
|
|
|
|
|c_<C-c>| +
|
|
||<C-c>||
|
|
________________________________________________________________________________
|
|
Quit command-line mode without executing.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<C-]>| +
|
|
||<C-]>||
|
|
________________________________________________________________________________
|
|
Expand a command-line abbreviation.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<Up>| +
|
|
||<Up>||
|
|
________________________________________________________________________________
|
|
Recall the previous command line from the history list which matches the
|
|
current command line.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<Down>| +
|
|
||<Down>||
|
|
________________________________________________________________________________
|
|
Recall the next command line from the history list which matches the current
|
|
command line.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<S-Up>| |c_<PageUp>|
|
|
||<S-Up>|| +
|
|
||<PageUp>||
|
|
________________________________________________________________________________
|
|
Recall the previous command line from the history list.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<S-Down>| |c_<PageDown>|
|
|
||<S-Down>|| +
|
|
||<PageDown>||
|
|
________________________________________________________________________________
|
|
Recall the next command line from the history list.
|
|
________________________________________________________________________________
|
|
|
|
section:Command-line{nbsp}completion[cmdline-completion]
|
|
|
|
|c_<Tab>| +
|
|
||<Tab>||
|
|
________________________________________________________________________________
|
|
Complete the word in front of the cursor according to the behavior specified in
|
|
'wildmode'. If 'wildmode' contains "list" and there are multiple matches then
|
|
the completion menu window is opened.
|
|
________________________________________________________________________________
|
|
|
|
|
|
|c_<S-Tab>| +
|
|
||<S-Tab>||
|
|
________________________________________________________________________________
|
|
Complete the previous full match when 'wildmode' contains "full".
|
|
________________________________________________________________________________
|
|
|
|
// vim: set filetype=asciidoc:
|