diff options
author | Kris Maglione <maglione.k@gmail.com> | 2008-12-02 13:42:44 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2008-12-02 13:42:44 -0500 |
commit | 1c153aa97817a2e7451108578cb219ea83b5ab60 (patch) | |
tree | c93360c3eb9a75b1cc8bfd62f9797899ff6e0a63 /vimperator/locale/en-US/cmdline.txt | |
parent | 3a8817a560bb2cfd8d79f597ef62e8c6e46ce4da (diff) | |
download | pentadactyl-1c153aa97817a2e7451108578cb219ea83b5ab60.tar.gz |
New directory layout.
Diffstat (limited to 'vimperator/locale/en-US/cmdline.txt')
-rw-r--r-- | vimperator/locale/en-US/cmdline.txt | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/vimperator/locale/en-US/cmdline.txt b/vimperator/locale/en-US/cmdline.txt new file mode 100644 index 00000000..72c0ba12 --- /dev/null +++ b/vimperator/locale/en-US/cmdline.txt @@ -0,0 +1,80 @@ +HEADER + +|Command-line-mode| |Command-line| + + +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 syntax=asciidoc: |