comparison runtime/doc/help.txt @ 7597:3012eaddb6b2

commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 15 20:57:49 2016 +0100 Update runtime files
author Christian Brabandt <cb@256bit.org>
date Fri, 15 Jan 2016 21:00:07 +0100
parents 502ca0a62fd8
children f16bfe02cef1
comparison
equal deleted inserted replaced
7596:a9234d9e3efd 7597:3012eaddb6b2
1 *help.txt* For Vim version 7.4. Last change: 2016 Jan 09 1 *help.txt* For Vim version 7.4. Last change: 2016 Jan 10
2 2
3 VIM - main help file 3 VIM - main help file
4 k 4 k
5 Move around: Use the cursor keys, or "h" to go left, h l 5 Move around: Use the cursor keys, or "h" to go left, h l
6 "j" to go down, "k" to go up, "l" to go right. j 6 "j" to go down, "k" to go up, "l" to go right. j
8 Get out of Vim: Use ":qa!<Enter>" (careful, all changes are lost!). 8 Get out of Vim: Use ":qa!<Enter>" (careful, all changes are lost!).
9 9
10 Jump to a subject: Position the cursor on a tag (e.g. |bars|) and hit CTRL-]. 10 Jump to a subject: Position the cursor on a tag (e.g. |bars|) and hit CTRL-].
11 With the mouse: ":set mouse=a" to enable the mouse (in xterm or GUI). 11 With the mouse: ":set mouse=a" to enable the mouse (in xterm or GUI).
12 Double-click the left mouse button on a tag, e.g. |bars|. 12 Double-click the left mouse button on a tag, e.g. |bars|.
13 Jump back: Type CTRL-T or CTRL-O (repeat to go further back). 13 Jump back: Type CTRL-T or CTRL-O. Repeat to go further back.
14 14
15 Get specific help: It is possible to go directly to whatever you want help 15 Get specific help: It is possible to go directly to whatever you want help
16 on, by giving an argument to the |:help| command. 16 on, by giving an argument to the |:help| command.
17 It is possible to further specify the context: 17 Prepend something to specify the context: *help-context*
18 *help-context* 18
19 WHAT PREPEND EXAMPLE ~ 19 WHAT PREPEND EXAMPLE ~
20 Normal mode command (nothing) :help x 20 Normal mode command :help x
21 Visual mode command v_ :help v_u 21 Visual mode command v_ :help v_u
22 Insert mode command i_ :help i_<Esc> 22 Insert mode command i_ :help i_<Esc>
23 Command-line command : :help :quit 23 Command-line command : :help :quit
24 Command-line editing c_ :help c_<Del> 24 Command-line editing c_ :help c_<Del>
25 Vim command argument - :help -r 25 Vim command argument - :help -r
26 Option ' :help 'textwidth' 26 Option ' :help 'textwidth'
27 Regular expression / :help /[ 27 Regular expression / :help /[
28 Also see |help-summary| for a verbose explanation. 28 See |help-summary| for more contexts and an explanation.
29 29
30 Search for help: Type ":help word", then hit CTRL-D to see matching 30 Search for help: Type ":help word", then hit CTRL-D to see matching
31 help entries for "word". 31 help entries for "word".
32 Or use ":helpgrep word". |:helpgrep| 32 Or use ":helpgrep word". |:helpgrep|
33 33