164
|
1 *motion.txt* For Vim version 7.0aa. Last change: 2005 Feb 08
|
7
|
2
|
|
3
|
|
4 VIM REFERENCE MANUAL by Bram Moolenaar
|
|
5
|
|
6
|
|
7 Cursor motions *cursor-motions* *navigation*
|
|
8
|
|
9 These commands move the cursor position. If the new position is off of the
|
|
10 screen, the screen is scrolled to show the cursor (see also 'scrolljump' and
|
|
11 'scrolloff' options).
|
|
12
|
|
13 1. Motions and operators |operator|
|
|
14 2. Left-right motions |left-right-motions|
|
|
15 3. Up-down motions |up-down-motions|
|
|
16 4. Word motions |word-motions|
|
|
17 5. Text object motions |object-motions|
|
|
18 6. Text object selection |object-select|
|
|
19 7. Marks |mark-motions|
|
|
20 8. Jumps |jump-motions|
|
|
21 9. Various motions |various-motions|
|
|
22
|
|
23 General remarks:
|
|
24
|
|
25 If you want to know where you are in the file use the "CTRL-G" command
|
|
26 |CTRL-G| or the "g CTRL-G" command |g_CTRL-G|. If you set the 'ruler' option,
|
|
27 the cursor position is continuously shown in the status line (which slows down
|
|
28 Vim a little).
|
|
29
|
|
30 Experienced users prefer the hjkl keys because they are always right under
|
|
31 their fingers. Beginners often prefer the arrow keys, because they do not
|
|
32 know what the hjkl keys do. The mnemonic value of hjkl is clear from looking
|
|
33 at the keyboard. Think of j as an arrow pointing downwards.
|
|
34
|
|
35 The 'virtualedit' option can be set to make it possible to move the cursor to
|
|
36 positions where there is no character or halfway a character.
|
|
37
|
|
38 ==============================================================================
|
|
39 1. Motions and operators *operator*
|
|
40
|
|
41 The motion commands can be used after an operator command, to have the command
|
|
42 operate on the text that was moved over. That is the text between the cursor
|
|
43 position before and after the motion. Operators are generally used to delete
|
|
44 or change text. The following operators are available:
|
|
45
|
|
46 |c| c change
|
|
47 |d| d delete
|
|
48 |y| y yank into register (does not change the text)
|
|
49 |~| ~ swap case (only if 'tildeop' is set)
|
|
50 |g~| g~ swap case
|
|
51 |gu| gu make lowercase
|
|
52 |gU| gU make uppercase
|
|
53 |!| ! filter through an external program
|
|
54 |=| = filter through 'equalprg' or C-indenting if empty
|
|
55 |gq| gq text formatting
|
|
56 |g?| g? ROT13 encoding
|
|
57 |>| > shift right
|
|
58 |<| < shift left
|
|
59 |zf| zf define a fold
|
|
60
|
|
61 If the motion includes a count and the operator also had a count before it,
|
|
62 the two counts are multiplied. For example: "2d3w" deletes six words.
|
|
63
|
|
64 After applying the operator the cursor is mostly left at the start of the text
|
|
65 that was operated upon. For example, "yfe" doesn't move the cursor, but "yFe"
|
|
66 moves the cursor leftwards to the "e" where the yank started.
|
|
67
|
|
68 *linewise* *characterwise*
|
|
69 The operator either affects whole lines, or the characters between the start
|
|
70 and end position. Generally, motions that move between lines affect lines
|
|
71 (are linewise), and motions that move within a line affect characters (are
|
|
72 characterwise). However, there are some exceptions.
|
|
73
|
|
74 *exclusive* *inclusive*
|
|
75 A character motion is either inclusive or exclusive. When inclusive, the start
|
|
76 and end position of the motion are included in the operation. When exclusive,
|
|
77 the last character towards the end of the buffer is not included. Linewise
|
|
78 motions always include the start and end position.
|
|
79
|
|
80 Which motions are linewise, inclusive or exclusive is mentioned below. There
|
|
81 are however, two general exceptions:
|
|
82 1. If the motion is exclusive and the end of the motion is in column 1, the
|
|
83 end of the motion is moved to the end of the previous line and the motion
|
|
84 becomes inclusive. Example: "}" moves to the first line after a paragraph,
|
|
85 but "d}" will not include that line.
|
20
|
86 *exclusive-linewise*
|
7
|
87 2. If the motion is exclusive, the end of the motion is in column 1 and the
|
|
88 start of the motion was at or before the first non-blank in the line, the
|
|
89 motion becomes linewise. Example: If a paragraph begins with some blanks
|
|
90 and you do "d}" while standing on the first non-blank, all the lines of
|
|
91 the paragraph are deleted, including the blanks. If you do a put now, the
|
|
92 deleted lines will be inserted below the cursor position.
|
|
93
|
|
94 Note that when the operator is pending (the operator command is typed, but the
|
|
95 motion isn't yet), a special set of mappings can be used. See |:omap|.
|
|
96
|
|
97 Instead of first giving the operator and then a motion you can use Visual
|
|
98 mode: mark the start of the text with "v", move the cursor to the end of the
|
|
99 text that is to be affected and then hit the operator. The text between the
|
|
100 start and the cursor position is highlighted, so you can see what text will
|
|
101 be operated upon. This allows much more freedom, but requires more key
|
|
102 strokes and has limited redo functionality. See the chapter on Visual mode
|
|
103 |Visual-mode|.
|
|
104
|
|
105 You can use a ":" command for a motion. For example "d:call FindEnd()".
|
|
106 But this can't be redone with "." if the command is more than one line.
|
|
107 This can be repeated: >
|
|
108 d:call search("f")<CR>
|
|
109 This cannot be repeated: >
|
|
110 d:if 1<CR>
|
|
111 call search("f")<CR>
|
|
112 endif<CR>
|
|
113
|
|
114
|
|
115 FORCING A MOTION TO BE LINEWISE, CHARACTERWISE OR BLOCKWISE
|
|
116
|
|
117 When a motion is not of the type you would like to use, you can force another
|
|
118 type by using "v", "V" or CTRL-V just after the operator.
|
|
119 Example: >
|
|
120 dj
|
|
121 deletes two lines >
|
|
122 dvj
|
|
123 deletes from the cursor position until the character below the cursor >
|
|
124 d<C-V>j
|
|
125 deletes the character under the cursor and the character below the cursor. >
|
|
126
|
|
127 Be careful with forcing a linewise movement to be used characterwise or
|
|
128 blockwise, the column may not always be defined.
|
|
129
|
|
130 *o_v*
|
|
131 v When used after an operator, before the motion command: Force
|
|
132 the operator to work characterwise, also when the motion is
|
|
133 linewise. If the motion was linewise, it will become
|
|
134 |exclusive|.
|
|
135 If the motion already was characterwise, toggle
|
|
136 inclusive/exclusive. This can be used to make an exclusive
|
|
137 motion inclusive and an inclusive motion exclusive.
|
|
138
|
|
139 *o_V*
|
|
140 V When used after an operator, before the motion command: Force
|
|
141 the operator to work linewise, also when the motion is
|
|
142 characterwise.
|
|
143
|
|
144 *o_CTRL-V*
|
|
145 CTRL-V When used after an operator, before the motion command: Force
|
|
146 the operator to work blockwise. This works like Visual block
|
|
147 mode selection, with the corners defined by the cursor
|
|
148 position before and after the motion.
|
|
149
|
|
150 ==============================================================================
|
|
151 2. Left-right motions *left-right-motions*
|
|
152
|
|
153 h or *h*
|
|
154 <Left> or *<Left>*
|
|
155 CTRL-H or *CTRL-H* *<BS>*
|
|
156 <BS> [count] characters to the left. |exclusive| motion.
|
|
157 Note: If you prefer <BS> to delete a character, use
|
|
158 the mapping:
|
|
159 :map CTRL-V<BS> X
|
|
160 (to enter "CTRL-V<BS>" type the CTRL-V key, followed
|
|
161 by the <BS> key)
|
|
162 See |:fixdel| if the <BS> key does not do what you
|
|
163 want.
|
|
164
|
|
165 l or *l*
|
|
166 <Right> or *<Right>* *<Space>*
|
|
167 <Space> [count] characters to the right. |exclusive| motion.
|
|
168
|
|
169 *0*
|
|
170 0 To the first character of the line. |exclusive|
|
|
171 motion. When moving up or down, stay in same screen
|
|
172 column (if possible).
|
|
173
|
|
174 *<Home>* *<kHome>*
|
|
175 <Home> To the first character of the line. |exclusive|
|
|
176 motion. When moving up or down, stay in same text
|
|
177 column (if possible). Works like "1|", which differs
|
|
178 from "0" when the line starts with a <Tab>. {not in
|
|
179 Vi}
|
|
180
|
|
181 *^*
|
|
182 ^ To the first non-blank character of the line.
|
|
183 |exclusive| motion.
|
|
184
|
|
185 *$* *<End>* *<kEnd>*
|
|
186 $ or <End> To the end of the line. When a count is given also go
|
|
187 [count - 1] lines downward |inclusive|.
|
|
188 In Visual mode the cursor goes to just after the last
|
|
189 character in the line.
|
|
190 When 'virtualedit' is active, "$" may move the cursor
|
|
191 back from past the end of the line to the last
|
|
192 character in the line.
|
|
193
|
|
194 *g_*
|
|
195 g_ To the last non-blank character of the line and
|
|
196 [count - 1] lines downward |inclusive|. {not in Vi}
|
|
197
|
|
198 *g0* *g<Home>*
|
|
199 g0 or g<Home> When lines wrap ('wrap' on): To the first character of
|
|
200 the screen line. |exclusive| motion. Differs from
|
|
201 "0" when a line is wider than the screen.
|
|
202 When lines don't wrap ('wrap' off): To the leftmost
|
|
203 character of the current line that is on the screen.
|
|
204 Differs from "0" when the first character of the line
|
|
205 is not on the screen. {not in Vi}
|
|
206
|
|
207 *g^*
|
|
208 g^ When lines wrap ('wrap' on): To the first non-blank
|
|
209 character of the screen line. |exclusive| motion.
|
|
210 Differs from "^" when a line is wider than the screen.
|
|
211 When lines don't wrap ('wrap' off): To the leftmost
|
|
212 non-blank character of the current line that is on the
|
|
213 screen. Differs from "^" when the first non-blank
|
|
214 character of the line is not on the screen. {not in
|
|
215 Vi}
|
|
216
|
|
217 *gm*
|
|
218 gm Like "g0", but half a screenwidth to the right (or as
|
|
219 much as possible). {not in Vi}
|
|
220
|
|
221 *g$* *g<End>*
|
|
222 g$ or g<End> When lines wrap ('wrap' on): To the last character of
|
|
223 the screen line and [count - 1] screen lines downward
|
|
224 |inclusive|. Differs from "$" when a line is wider
|
|
225 than the screen.
|
|
226 When lines don't wrap ('wrap' off): To the rightmost
|
|
227 character of the current line that is visible on the
|
|
228 screen. Differs from "$" when the last character of
|
|
229 the line is not on the screen or when a count is used.
|
|
230 Additionally, vertical movements keep the column,
|
|
231 instead of going to the end of the line.
|
|
232 {not in Vi}
|
|
233
|
|
234 *bar*
|
|
235 | To screen column [count] in the current line.
|
|
236 |exclusive| motion.
|
|
237
|
|
238 *f*
|
|
239 f{char} To [count]'th occurrence of {char} to the right. The
|
|
240 cursor is placed on {char} |inclusive|.
|
|
241 {char} can be entered as a digraph |digraph-arg|.
|
|
242 When 'encoding' is set to Unicode, composing
|
|
243 characters may be used, see |utf-8-char-arg|.
|
|
244 |:lmap| mappings apply to {char}. The CTRL-^ command
|
|
245 in Insert mode can be used to switch this on/off
|
|
246 |i_CTRL-^|.
|
|
247
|
|
248 *F*
|
|
249 F{char} To the [count]'th occurrence of {char} to the left.
|
|
250 The cursor is placed on {char} |inclusive|.
|
|
251 {char} can be entered like with the |f| command.
|
|
252
|
|
253 *t*
|
|
254 t{char} Till before [count]'th occurrence of {char} to the
|
|
255 right. The cursor is placed on the character left of
|
|
256 {char} |inclusive|.
|
|
257 {char} can be entered like with the |f| command.
|
|
258
|
|
259 *T*
|
|
260 T{char} Till after [count]'th occurrence of {char} to the
|
|
261 left. The cursor is placed on the character right of
|
|
262 {char} |inclusive|.
|
|
263 {char} can be entered like with the |f| command.
|
|
264
|
|
265 *;*
|
|
266 ; Repeat latest f, t, F or T [count] times.
|
|
267
|
|
268 *,*
|
|
269 , Repeat latest f, t, F or T in opposite direction
|
|
270 [count] times.
|
|
271
|
|
272 These commands move the cursor to the specified column in the current line.
|
|
273 They stop at the first column and at the end of the line, except "$", which
|
|
274 may move to one of the next lines. See 'whichwrap' option to make some of the
|
|
275 commands move across line boundaries.
|
|
276
|
|
277 ==============================================================================
|
|
278 3. Up-down motions *up-down-motions*
|
|
279
|
|
280 k or *k*
|
|
281 <Up> or *<Up>* *CTRL-P*
|
|
282 CTRL-P [count] lines upward |linewise|.
|
|
283
|
|
284 j or *j*
|
|
285 <Down> or *<Down>*
|
|
286 CTRL-J or *CTRL-J*
|
|
287 <NL> or *<NL>* *CTRL-N*
|
|
288 CTRL-N [count] lines downward |linewise|.
|
|
289
|
|
290 gk or *gk* *g<Up>*
|
|
291 g<Up> [count] display lines upward. |exclusive| motion.
|
|
292 Differs from 'k' when lines wrap, and when used with
|
|
293 an operator, because it's not linewise. {not in Vi}
|
|
294
|
|
295 gj or *gj* *g<Down>*
|
|
296 g<Down> [count] display lines downward. |exclusive| motion.
|
|
297 Differs from 'j' when lines wrap, and when used with
|
|
298 an operator, because it's not linewise. {not in Vi}
|
|
299
|
|
300 *-*
|
|
301 - <minus> [count] lines upward, on the first non-blank
|
|
302 character |linewise|.
|
|
303
|
|
304 + or *+*
|
|
305 CTRL-M or *CTRL-M* *<CR>*
|
|
306 <CR> [count] lines downward, on the first non-blank
|
|
307 character |linewise|.
|
|
308
|
|
309 *_*
|
|
310 _ <underscore> [count] - 1 lines downward, on the first non-blank
|
|
311 character |linewise|.
|
|
312
|
|
313 *G*
|
|
314 G Goto line [count], default last line, on the first
|
|
315 non-blank character |linewise|. If 'startofline' not
|
|
316 set, keep the same column.
|
|
317
|
|
318 *<C-End>*
|
|
319 <C-End> Goto line [count], default last line, on the last
|
|
320 character |inclusive|. {not in Vi}
|
|
321
|
|
322 <C-Home> or *gg* *<C-Home>*
|
|
323 gg Goto line [count], default first line, on the first
|
|
324 non-blank character |linewise|. If 'startofline' not
|
|
325 set, keep the same column.
|
|
326
|
|
327 :[range] Set the cursor on the specified line number. If
|
|
328 there are several numbers, the last one is used.
|
|
329
|
|
330 *N%*
|
|
331 {count}% Go to {count} percentage in the file, on the first
|
|
332 non-blank in the line |linewise|. To compute the new
|
|
333 line number this formula is used:
|
|
334 ({count} * number-of-lines + 99) / 100
|
|
335 See also 'startofline' option. {not in Vi}
|
|
336
|
|
337 :[range]go[to] [count] *:go* *:goto* *go*
|
|
338 [count]go Go to {count} byte in the buffer. Default [count] is
|
|
339 one, start of the file. When giving [range], the
|
|
340 last number in it used as the byte count. End-of-line
|
|
341 characters are counted depending on the current
|
|
342 'fileformat' setting.
|
|
343 {not in Vi}
|
|
344 {not available when compiled without the
|
|
345 |+byte_offset| feature}
|
|
346
|
|
347 These commands move to the specified line. They stop when reaching the first
|
|
348 or the last line. The first two commands put the cursor in the same column
|
|
349 (if possible) as it was after the last command that changed the column,
|
|
350 except after the "$" command, then the cursor will be put on the last
|
|
351 character of the line.
|
|
352
|
161
|
353 If "k", "-" or CTRL-P is used with a [count] and there are less than [count]
|
|
354 lines above the cursor and the 'cpo' option includes the "-" flag it is an
|
|
355 error. |cpo--|.
|
|
356
|
7
|
357 ==============================================================================
|
|
358 4. Word motions *word-motions*
|
|
359
|
|
360 <S-Right> or *<S-Right>* *w*
|
|
361 w [count] words forward. |exclusive| motion.
|
|
362
|
|
363 <C-Right> or *<C-Right>* *W*
|
|
364 W [count] WORDS forward. |exclusive| motion.
|
|
365
|
|
366 *e*
|
|
367 e Forward to the end of word [count] |inclusive|.
|
|
368
|
|
369 *E*
|
|
370 E Forward to the end of WORD [count] |inclusive|.
|
|
371
|
|
372 <S-Left> or *<S-Left>* *b*
|
|
373 b [count] words backward. |exclusive| motion.
|
|
374
|
|
375 <C-Left> or *<C-Left>* *B*
|
|
376 B [count] WORDS backward. |exclusive| motion.
|
|
377
|
|
378 *ge*
|
|
379 ge Backward to the end of word [count] |inclusive|.
|
|
380
|
|
381 *gE*
|
|
382 gE Backward to the end of WORD [count] |inclusive|.
|
|
383
|
|
384 These commands move over words or WORDS.
|
|
385 *word*
|
|
386 A word consists of a sequence of letters, digits and underscores, or a
|
|
387 sequence of other non-blank characters, separated with white space (spaces,
|
|
388 tabs, <EOL>). This can be changed with the 'iskeyword' option.
|
|
389 *WORD*
|
|
390 A WORD consists of a sequence of non-blank characters, separated with white
|
|
391 space. An empty line is also considered to be a word and a WORD.
|
|
392
|
|
393 A sequence of folded lines is counted for one word of a single character.
|
|
394 "w" and "W", "e" and "E" move to the start/end of the first word or WORD after
|
|
395 a range of folded lines. "b" and "B" move to the start of the first word or
|
|
396 WORD before the fold.
|
|
397
|
|
398 Special case: "cw" and "cW" are treated like "ce" and "cE" if the cursor is
|
|
399 on a non-blank. This is because "cw" is interpreted as change-word, and a
|
|
400 word does not include the following white space. {Vi: "cw" when on a blank
|
|
401 followed by other blanks changes only the first blank; this is probably a
|
|
402 bug, because "dw" deletes all the blanks}
|
|
403
|
|
404 Another special case: When using the "w" motion in combination with an
|
|
405 operator and the last word moved over is at the end of a line, the end of
|
|
406 that word becomes the end of the operated text, not the first word in the
|
|
407 next line.
|
|
408
|
|
409 The original Vi implementation of "e" is buggy. For example, the "e" command
|
|
410 will stop on the first character of a line if the previous line was empty.
|
|
411 But when you use "2e" this does not happen. In Vim "ee" and "2e" are the
|
|
412 same, which is more logical. However, this causes a small incompatibility
|
|
413 between Vi and Vim.
|
|
414
|
|
415 ==============================================================================
|
|
416 5. Text object motions *object-motions*
|
|
417
|
|
418 *(*
|
|
419 ( [count] sentences backward. |exclusive| motion.
|
|
420
|
|
421 *)*
|
|
422 ) [count] sentences forward. |exclusive| motion.
|
|
423
|
|
424 *{*
|
|
425 { [count] paragraphs backward. |exclusive| motion.
|
|
426
|
|
427 *}*
|
|
428 } [count] paragraphs forward. |exclusive| motion.
|
|
429
|
|
430 *]]*
|
|
431 ]] [count] sections forward or to the next '{' in the
|
20
|
432 first column. When used after an operator, then also
|
|
433 stops below a '}' in the first column. |exclusive|
|
|
434 Note that |exclusive-linewise| often applies.
|
7
|
435
|
|
436 *][*
|
|
437 ][ [count] sections forward or to the next '}' in the
|
20
|
438 first column. |exclusive|
|
|
439 Note that |exclusive-linewise| often applies.
|
7
|
440
|
|
441 *[[*
|
|
442 [[ [count] sections backward or to the previous '{' in
|
20
|
443 the first column. |exclusive|
|
|
444 Note that |exclusive-linewise| often applies.
|
7
|
445
|
|
446 *[]*
|
|
447 [] [count] sections backward or to the previous '}' in
|
20
|
448 the first column. |exclusive|
|
|
449 Note that |exclusive-linewise| often applies.
|
7
|
450
|
|
451 These commands move over three kinds of text objects.
|
|
452
|
|
453 *sentence*
|
|
454 A sentence is defined as ending at a '.', '!' or '?' followed by either the
|
|
455 end of a line, or by a space or tab. Any number of closing ')', ']', '"'
|
|
456 and ''' characters may appear after the '.', '!' or '?' before the spaces,
|
|
457 tabs or end of line. A paragraph and section boundary is also a sentence
|
|
458 boundary.
|
|
459 If the 'J' flag is present in 'cpoptions', at least two spaces have to
|
|
460 follow the punctuation mark; <Tab>s are not recognized as white space.
|
|
461 The definition of a sentence cannot be changed.
|
|
462
|
|
463 *paragraph*
|
|
464 A paragraph begins after each empty line, and also at each of a set of
|
|
465 paragraph macros, specified by the pairs of characters in the 'paragraphs'
|
|
466 option. The default is "IPLPPPQPP LIpplpipbp", which corresponds to the
|
|
467 macros ".IP", ".LP", etc. (These are nroff macros, so the dot must be in the
|
164
|
468 first column). A section boundary is also a paragraph boundary.
|
|
469 Note that a blank line (only containing white space) is NOT a paragraph
|
|
470 boundary.
|
|
471 Also note that this does not include a '{' or '}' in the first column. When
|
|
472 the '{' flag is in 'cpoptions' then '{' in the first column is used as a
|
|
473 paragraph boundary |posix|.
|
7
|
474
|
|
475 *section*
|
|
476 A section begins after a form-feed (<C-L>) in the first column and at each of
|
|
477 a set of section macros, specified by the pairs of characters in the
|
|
478 'sections' option. The default is "SHNHH HUnhsh", which defines a section to
|
|
479 start at the nroff macros ".SH", ".NH", ".H", ".HU", ".nh" and ".sh".
|
|
480
|
|
481 The "]" and "[" commands stop at the '{' or '}' in the first column. This is
|
|
482 useful to find the start or end of a function in a C program. Note that the
|
|
483 first character of the command determines the search direction and the
|
|
484 second character the type of brace found.
|
|
485
|
|
486 If your '{' or '}' are not in the first column, and you would like to use "[["
|
|
487 and "]]" anyway, try these mappings: >
|
|
488 :map [[ ?{<CR>w99[{
|
|
489 :map ][ /}<CR>b99]}
|
|
490 :map ]] j0[[%/{<CR>
|
|
491 :map [] k$][%?}<CR>
|
|
492 [type these literally, see |<>|]
|
|
493
|
|
494 ==============================================================================
|
|
495 6. Text object selection *object-select* *text-objects*
|
|
496 *v_a* *v_i*
|
|
497
|
|
498 This is a series of commands that can only be used while in Visual mode or
|
|
499 after an operator. The commands that start with "a" select "a"n object
|
|
500 including white space, the commands starting with "i" select an "inner" object
|
|
501 without white space, or just the white space. Thus the "inner" commands
|
|
502 always select less text than the "a" commands.
|
|
503
|
|
504 These commands are {not in Vi}.
|
|
505 These commands are not available when the |+textobjects| feature has been
|
|
506 disabled at compile time.
|
|
507 *v_aw* *aw*
|
|
508 aw "a word", select [count] words (see |word|).
|
|
509 Leading or trailing white space is included, but not
|
|
510 counted.
|
|
511 When used in Visual linewise mode "aw" switches to
|
|
512 Visual characterwise mode.
|
|
513
|
|
514 *v_iw* *iw*
|
|
515 iw "inner word", select [count] words (see |word|).
|
|
516 White space between words is counted too.
|
|
517 When used in Visual linewise mode "iw" switches to
|
|
518 Visual characterwise mode.
|
|
519
|
|
520 *v_aW* *aW*
|
|
521 aW "a WORD", select [count] WORDs (see |WORD|).
|
|
522 Leading or trailing white space is included, but not
|
|
523 counted.
|
|
524 When used in Visual linewise mode "aW" switches to
|
|
525 Visual characterwise mode.
|
|
526
|
|
527 *v_iW* *iW*
|
|
528 iW "inner WORD", select [count] WORDs (see |WORD|).
|
|
529 White space between words is counted too.
|
|
530 When used in Visual linewise mode "iW" switches to
|
|
531 Visual characterwise mode.
|
|
532
|
|
533 *v_as* *as*
|
|
534 as "a sentence", select [count] sentences (see
|
|
535 |sentence|).
|
|
536 When used in Visual mode it is made characterwise.
|
|
537
|
|
538 *v_is* *is*
|
|
539 is "inner sentence", select [count] sentences (see
|
|
540 |sentence|).
|
|
541 When used in Visual mode it is made characterwise.
|
|
542
|
|
543 *v_ap* *ap*
|
|
544 ap "a paragraph", select [count] paragraphs (see
|
|
545 |paragraph|).
|
|
546 Exception: a blank line (only containing white space)
|
|
547 is also a paragraph boundary.
|
|
548 When used in Visual mode it is made linewise.
|
|
549
|
|
550 *v_ip* *ip*
|
|
551 ip "inner paragraph", select [count] paragraphs (see
|
|
552 |paragraph|).
|
|
553 Exception: a blank line (only containing white space)
|
|
554 is also a paragraph boundary.
|
|
555 When used in Visual mode it is made linewise.
|
|
556
|
|
557 a] *v_a]* *v_a[* *a]* *a[*
|
|
558 a[ "a [] block", select [count] '[' ']' blocks. This
|
|
559 goes backwards to the [count] unclosed '[', and finds
|
|
560 the matching ']'. The enclosed text is selected,
|
|
561 including the '[' and ']'.
|
|
562 When used in Visual mode it is made characterwise.
|
|
563
|
|
564 i] *v_i]* *v_i[* *i]* *i[*
|
|
565 i[ "inner [] block", select [count] '[' ']' blocks. This
|
|
566 goes backwards to the [count] unclosed '[', and finds
|
|
567 the matching ']'. The enclosed text is selected,
|
|
568 excluding the '[' and ']'.
|
|
569 When used in Visual mode it is made characterwise.
|
|
570
|
|
571 a) *v_a)* *a)* *a(*
|
|
572 a( *v_ab* *v_a(* *ab*
|
|
573 ab "a block", select [count] blocks, from "[count] [(" to
|
|
574 the matching ')', including the '(' and ')' (see
|
|
575 |[(|). Does not include white space outside of the
|
|
576 parenthesis.
|
|
577 When used in Visual mode it is made characterwise.
|
|
578
|
|
579 i) *v_i)* *i)* *i(*
|
|
580 i( *v_ib* *v_i(* *ib*
|
|
581 ib "inner block", select [count] blocks, from "[count] [("
|
|
582 to the matching ')', excluding the '(' and ')' (see
|
|
583 |[(|).
|
|
584 When used in Visual mode it is made characterwise.
|
|
585
|
|
586 a> *v_a>* *v_a<* *a>* *a<*
|
|
587 a< "a <> block", select [count] <> blocks, from the
|
|
588 [count]'th unmatched '<' backwards to the matching
|
|
589 '>', including the '<' and '>'.
|
|
590 When used in Visual mode it is made characterwise.
|
|
591
|
|
592 i> *v_i>* *v_i<* *i>* *i<*
|
|
593 i< "inner <> block", select [count] <> blocks, from
|
|
594 the [count]'th unmatched '<' backwards to the matching
|
|
595 '>', excluding the '<' and '>'.
|
|
596 When used in Visual mode it is made characterwise.
|
|
597
|
|
598 a} *v_a}* *a}* *a{*
|
|
599 a{ *v_aB* *v_a{* *aB*
|
|
600 aB "a Block", select [count] Blocks, from "[count] [{" to
|
|
601 the matching '}', including the '{' and '}' (see
|
|
602 |[{|).
|
|
603 When used in Visual mode it is made characterwise.
|
|
604
|
|
605 i} *v_i}* *i}* *i{*
|
|
606 i{ *v_iB* *v_i{* *iB*
|
|
607 iB "inner Block", select [count] Blocks, from "[count] [{"
|
|
608 to the matching '}', excluding the '{' and '}' (see
|
|
609 |[{|).
|
|
610 When used in Visual mode it is made characterwise.
|
|
611
|
12
|
612 a" *v_aquote* *aquote*
|
|
613 a' *v_a'* *a'*
|
|
614 a` *v_a`* *a`*
|
|
615 "a quoted string". Selects the text from the previous
|
|
616 quote until the next quote. The 'quoteescape' is used
|
|
617 to skip escaped quotes.
|
|
618 When the cursor starts on a quote, Vim will figure out
|
|
619 which quote pairs form a string by searching from the
|
|
620 start of the line.
|
|
621 Any trailing or leading white space is included.
|
|
622 When used in Visual mode it is made characterwise.
|
|
623 Repeating this object in Visual mode another string is
|
|
624 included. A count is currently not used.
|
|
625
|
|
626 i" *v_iquote* *iquote*
|
|
627 i' *v_i'* *i'*
|
|
628 i` *v_i`* *i`*
|
|
629 Like a", a' and a`, but exclude the quotes and
|
|
630 repeating won't extend the Visual selection.
|
|
631
|
7
|
632 When used after an operator:
|
|
633 For non-block objects:
|
|
634 For the "a" commands: The operator applies to the object and the white
|
|
635 space after the object. If there is no white space after the object
|
|
636 or when the cursor was in the white space before the object, the white
|
|
637 space before the object is included.
|
|
638 For the "inner" commands: If the cursor was on the object, the
|
|
639 operator applies to the object. If the cursor was on white space, the
|
|
640 operator applies to the white space.
|
|
641 For a block object:
|
|
642 The operator applies to the block where the cursor is in, or the block
|
|
643 on which the cursor is on one of the braces. For the "inner" commands
|
|
644 the surrounding braces are excluded. For the "a" commands, the braces
|
|
645 are included.
|
|
646
|
|
647 When used in Visual mode:
|
|
648 When start and end of the Visual area are the same (just after typing "v"):
|
|
649 One object is selected, the same as for using an operator.
|
|
650 When start and end of the Visual area are not the same:
|
|
651 For non-block objects the area is extended by one object or the white
|
|
652 space up to the next object, or both for the "a" objects. The
|
|
653 direction in which this happens depends on which side of the Visual
|
|
654 area the cursor is. For the block objects the block is extended one
|
|
655 level outwards.
|
|
656
|
|
657 For illustration, here is a list of delete commands, grouped from small to big
|
|
658 objects. Note that for a single character and a whole line the existing vi
|
|
659 movement commands are used.
|
|
660 "dl" delete character (alias: "x") |dl|
|
|
661 "diw" delete inner word *diw*
|
|
662 "daw" delete a word *daw*
|
|
663 "diW" delete inner WORD (see |WORD|) *diW*
|
|
664 "daW" delete a WORD (see |WORD|) *daW*
|
|
665 "dd" delete one line |dd|
|
|
666 "dis" delete inner sentence *dis*
|
|
667 "das" delete a sentence *das*
|
|
668 "dib" delete inner '(' ')' block *dib*
|
|
669 "dab" delete a '(' ')' block *dab*
|
|
670 "dip" delete inner paragraph *dip*
|
|
671 "dap" delete a paragraph *dap*
|
|
672 "diB" delete inner '{' '}' block *diB*
|
|
673 "daB" delete a '{' '}' block *daB*
|
|
674
|
|
675 Note the difference between using a movement command and an object. The
|
|
676 movement command operates from here (cursor position) to where the movement
|
|
677 takes us. When using an object the whole object is operated upon, no matter
|
|
678 where on the object the cursor is. For example, compare "dw" and "daw": "dw"
|
|
679 deletes from the cursor position to the start of the next word, "daw" deletes
|
|
680 the word under the cursor and the space after or before it.
|
|
681
|
|
682 ==============================================================================
|
|
683 7. Marks *mark-motions* *E20* *E78*
|
|
684
|
|
685 Jumping to a mark can be done in two ways:
|
|
686 1. With ` (backtick): The cursor is positioned at the specified location
|
|
687 and the motion is |exclusive|.
|
|
688 2. With ' (single quote): The cursor is positioned on the first non-blank
|
|
689 character in the line of the specified location and
|
|
690 the motion is linewise.
|
|
691
|
|
692 *m* *mark* *Mark*
|
|
693 m{a-zA-Z} Set mark {a-zA-Z} at cursor position (does not move
|
|
694 the cursor, this is not a motion command).
|
|
695
|
|
696 *m'* *m`*
|
|
697 m' or m` Set the previous context mark. This can be jumped to
|
|
698 with the "''" or "``" command (does not move the
|
|
699 cursor, this is not a motion command).
|
|
700
|
|
701 *m[* *m]*
|
|
702 m[ or m] Set the |'[| or |']| mark. Useful when an operator is
|
|
703 to be simulated by multiple commands. (does not move
|
|
704 the cursor, this is not a motion command).
|
|
705
|
|
706 *:ma* *:mark* *E191*
|
9
|
707 :[range]ma[rk] {a-zA-Z'}
|
|
708 Set mark {a-zA-Z'} at last line number in [range],
|
7
|
709 column 0. Default is cursor line.
|
|
710
|
|
711 *:k*
|
9
|
712 :[range]k{a-zA-Z'} Same as :mark, but the space before the mark name can
|
7
|
713 be omitted.
|
|
714
|
|
715 *'* *'a* *`* *`a*
|
|
716 '{a-z} `{a-z} Jump to the mark {a-z}.
|
|
717
|
|
718 *'A* *'0* *`A* *`0*
|
|
719 '{A-Z0-9} `{A-Z0-9} To the mark {A-Z0-9} in the correct file (not a motion
|
|
720 command when in another file). {not in Vi}
|
|
721
|
|
722 *g'* *g'a* *g`* *g`a*
|
|
723 g'{mark} g`{mark}
|
|
724 Jump to the {mark}, but don't change the jumplist when
|
|
725 jumping within the current buffer. Example: >
|
|
726 g`"
|
|
727 < jumps to the last known position in a file. See
|
9
|
728 $VIMRUNTIME/vimrc_example.vim.
|
|
729 Also see |:keepjumps|.
|
|
730 {not in Vi}
|
7
|
731
|
|
732 *:marks*
|
|
733 :marks List all the current marks (not a motion command).
|
|
734 The |'(|, |')|, |'{| and |'}| marks are not listed.
|
|
735 {not in Vi}
|
|
736 *E283*
|
|
737 :marks {arg} List the marks that are mentioned in {arg} (not a
|
|
738 motion command). For example: >
|
|
739 :marks aB
|
|
740 < to list marks 'a' and 'B'. {not in Vi}
|
|
741
|
24
|
742 *:delm* *:delmarks*
|
|
743 :delm[arks] {marks} Delete the specified marks. Marks that can be deleted
|
|
744 include A-Z and 0-9. You cannot delete the ' mark.
|
|
745 They can be specified by giving the list of mark
|
|
746 names, or with a range, separated with a dash. Spaces
|
|
747 are ignored. Examples: >
|
|
748 :delmarks a deletes mark a
|
|
749 :delmarks a b 1 deletes marks a, b and 1
|
|
750 :delmarks Aa deletes marks A and a
|
|
751 :delmarks p-z deletes marks in the range p to z
|
|
752 :delmarks ^.[] deletes marks ^ . [ ]
|
|
753 :delmarks \" deletes mark "
|
|
754 < {not in Vi}
|
|
755
|
|
756 :delm[arks]! Delete all marks for the current buffer, but not marks
|
|
757 A-Z or 0-9.
|
|
758 {not in Vi}
|
|
759
|
7
|
760 A mark is not visible in any way. It is just a position in the file that is
|
|
761 remembered. Do not confuse marks with named registers, they are totally
|
|
762 unrelated.
|
|
763
|
|
764 'a - 'z lowercase marks, valid within one file
|
|
765 'A - 'Z uppercase marks, also called file marks, valid between files
|
|
766 '0 - '9 numbered marks, set from .viminfo file
|
|
767
|
|
768 Lowercase marks 'a to 'z are remembered as long as the file remains in the
|
|
769 buffer list. If you remove the file from the buffer list, all its marks are
|
|
770 lost. If you delete a line that contains a mark, that mark is erased.
|
|
771
|
|
772 To delete a mark: Create a new line, position the mark there, delete the line.
|
|
773 E.g.: "o<Esc>mxdd". This does change the file though. Using "u" won't work,
|
|
774 it also restores marks.
|
|
775
|
|
776 Lowercase marks can be used in combination with operators. For example: "d't"
|
|
777 deletes the lines from the cursor position to mark 't'. Hint: Use mark 't' for
|
|
778 Top, 'b' for Bottom, etc.. Lowercase marks are restored when using undo and
|
|
779 redo.
|
|
780
|
|
781 Uppercase marks 'A to 'Z include the file name. {Vi: no uppercase marks} You
|
|
782 can use them to jump from file to file. You can only use an uppercase mark
|
|
783 with an operator if the mark is in the current file. The line number of the
|
|
784 mark remains correct, even if you insert/delete lines or edit another file for
|
|
785 a moment. When the 'viminfo' option is not empty, uppercase marks are kept in
|
|
786 the .viminfo file. See |viminfo-file-marks|.
|
|
787
|
|
788 Numbered marks '0 to '9 are quite different. They can not be set directly.
|
|
789 They are only present when using a viminfo file |viminfo-file|. Basically '0
|
|
790 is the location of the cursor when you last exited Vim, '1 the last but one
|
|
791 time, etc. Use the "r" flag in 'viminfo' to specify files for which no
|
|
792 Numbered mark should be stored. See |viminfo-file-marks|.
|
|
793
|
|
794
|
|
795 *'[* *`[*
|
|
796 '[ `[ To the first character of the previously changed
|
|
797 or yanked text. {not in Vi}
|
|
798
|
|
799 *']* *`]*
|
|
800 '] `] To the last character of the previously changed or
|
|
801 yanked text. {not in Vi}
|
|
802
|
|
803 After executing an operator the Cursor is put at the beginning of the text
|
|
804 that was operated upon. After a put command ("p" or "P") the cursor is
|
|
805 sometimes placed at the first inserted line and sometimes on the last inserted
|
|
806 character. The four commands above put the cursor at either end. Example:
|
|
807 After yanking 10 lines you want to go to the last one of them: "10Y']". After
|
|
808 inserting several lines with the "p" command you want to jump to the lowest
|
|
809 inserted line: "p']". This also works for text that has been inserted.
|
|
810
|
|
811 Note: After deleting text, the start and end positions are the same, except
|
|
812 when using blockwise Visual mode. These commands do not work when no change
|
|
813 was made yet in the current file.
|
|
814
|
|
815 *'<* *`<*
|
|
816 '< `< To the first character of the last selected Visual
|
|
817 area in the current buffer. {not in Vi}.
|
|
818
|
|
819 *'>* *`>*
|
|
820 '> `> To the last character of the last selected Visual
|
|
821 area in the current buffer. {not in Vi}.
|
|
822
|
|
823 *''* *``*
|
36
|
824 '' `` To the position before the latest jump, or where the
|
|
825 last "m'" or "m`" command was given. Not set when the
|
7
|
826 |:keepjumps| command modifier was used.
|
|
827 Also see |restore-position|.
|
|
828
|
|
829 *'quote* *`quote*
|
|
830 '" `" To the cursor position when last exiting the current
|
|
831 buffer. Defaults to the first character of the first
|
|
832 line. See |last-position-jump| for how to use this
|
|
833 for each opened file.
|
|
834 Only one position is remembered per buffer, not one
|
|
835 for each window. As long as the buffer is visible in
|
|
836 a window the position won't be changed.
|
|
837 {not in Vi}.
|
|
838
|
|
839 *'^* *`^*
|
|
840 '^ `^ To the position where the cursor was the last time
|
42
|
841 when Insert mode was stopped. This is used by the
|
|
842 |gi| command. Not set when the |:keepjumps| command
|
7
|
843 modifier was used. {not in Vi}
|
|
844
|
|
845 *'.* *`.*
|
|
846 '. `. To the position where the last change was made. The
|
|
847 position is at or near where the change started.
|
|
848 Sometimes a command is executed as several changes,
|
|
849 then the position can be near the end of what the
|
|
850 command changed. For example when inserting a word,
|
|
851 the position will be on the last character.
|
|
852 {not in Vi}
|
|
853
|
|
854 *'(* *`(*
|
|
855 '( `( To the start of the current sentence, like the |(|
|
|
856 command. {not in Vi}
|
|
857
|
|
858 *')* *`)*
|
|
859 ') `) To the end of the current sentence, like the |)|
|
|
860 command. {not in Vi}
|
|
861
|
|
862 *'{* *`{*
|
|
863 '{ `{ To the start of the current paragraph, like the |{|
|
|
864 command. {not in Vi}
|
|
865
|
|
866 *'}* *`}*
|
|
867 '} `} To the end of the current paragraph, like the |}|
|
|
868 command. {not in Vi}
|
|
869
|
|
870 These commands are not marks themselves, but jump to a mark:
|
|
871
|
|
872 *]'*
|
|
873 ]' [count] times to next line with a lowercase mark below
|
|
874 the cursor, on the first non-blank character in the
|
|
875 line. {not in Vi}
|
|
876
|
|
877 *]`*
|
|
878 ]` [count] times to lowercase mark after the cursor. {not
|
|
879 in Vi}
|
|
880
|
|
881 *['*
|
|
882 [' [count] times to previous line with a lowercase mark
|
|
883 before the cursor, on the first non-blank character in
|
|
884 the line. {not in Vi}
|
|
885
|
|
886 *[`*
|
|
887 [` [count] times to lowercase mark before the cursor.
|
|
888 {not in Vi}
|
|
889
|
|
890
|
|
891 :loc[kmarks] {command} *:loc* *:lockmarks*
|
|
892 Execute {command} without adjusting marks. This is
|
|
893 useful when changing text in a way that the line count
|
|
894 will be the same when the change has completed.
|
|
895 WARNING: When the line count does change, marks below
|
|
896 the change will keep their line number, thus move to
|
|
897 another text line.
|
|
898 These items will not be adjusted for deleted/inserted
|
|
899 lines:
|
|
900 - lower case letter marks 'a - 'z
|
|
901 - upper case letter marks 'A - 'Z
|
|
902 - numbered marks '0 - '9
|
|
903 - last insert position '^
|
|
904 - last change position '.
|
|
905 - the Visual area '< and '>
|
|
906 - line numbers in placed signs
|
|
907 - line numbers in quickfix positions
|
|
908 - positions in the |jumplist|
|
|
909 - positions in the |tagstack|
|
|
910 These items will still be adjusted:
|
|
911 - previous context mark ''
|
|
912 - the cursor position
|
|
913 - the view of a window on a buffer
|
|
914 - folds
|
|
915 - diffs
|
|
916
|
|
917 :kee[pmarks] {command} *:kee* *:keepmarks*
|
|
918 Currently only has effect for the filter command
|
|
919 |:range!|:
|
|
920 - When the number of lines after filtering is equal to
|
|
921 or larger than before, all marks are kept at the
|
|
922 same line number.
|
|
923 - When the number of lines decreases, the marks in the
|
9
|
924 lines that disappeared are deleted.
|
7
|
925 In any case the marks below the filtered text have
|
|
926 their line numbers adjusted, thus stick to the text,
|
|
927 as usual.
|
|
928 When the 'R' flag is missing from 'cpoptions' this has
|
|
929 the same effect as using ":keepmarks".
|
|
930
|
|
931 *:keepj* *:keepjumps*
|
|
932 :keepj[umps] {command}
|
9
|
933 Moving around in {command} does not change the |''|,
|
|
934 |'.| and |'^| marks, the |jumplist| or the
|
|
935 |changelist|.
|
|
936 Useful when making a change or inserting text
|
|
937 automatically and the user doesn't want to go to this
|
|
938 position. E.g., when updating a "Last change"
|
|
939 timestamp in the first line: >
|
|
940
|
|
941 :let lnum = getline(".")
|
|
942 :keepjumps normal gg
|
|
943 :call SetLastChange()
|
|
944 :keepjumps exe "normal " . lnum . "G"
|
|
945 <
|
|
946 Note that ":keepjumps" must be used for every command.
|
|
947 When invoking a function the commands in that function
|
85
|
948 can still change the jumplist. Also, for
|
|
949 ":keepjumps exe 'command '" the "command" won't keep
|
|
950 jumps. Instead use: ":exe 'keepjumps command'"
|
7
|
951
|
|
952 ==============================================================================
|
|
953 8. Jumps *jump-motions*
|
|
954
|
|
955 A "jump" is one of the following commands: "'", "`", "G", "/", "?", "n",
|
|
956 "N", "%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and
|
|
957 the commands that start editing a new file. If you make the cursor "jump"
|
|
958 with one of these commands, the position of the cursor before the jump is
|
|
959 remembered. You can return to that position with the "''" and "``" command,
|
|
960 unless the line containing that position was changed or deleted.
|
|
961
|
|
962 *CTRL-O*
|
|
963 CTRL-O Go to [count] Older cursor position in jump list
|
|
964 (not a motion command). {not in Vi}
|
|
965 {not available without the +jumplist feature}
|
|
966
|
|
967 <Tab> or *CTRL-I* *<Tab>*
|
|
968 CTRL-I Go to [count] newer cursor position in jump list
|
|
969 (not a motion command).
|
|
970 In a |quickfix-window| it takes you to the position of
|
|
971 the error under the cursor.
|
|
972 {not in Vi}
|
|
973 {not available without the +jumplist feature}
|
|
974
|
|
975 *:ju* *:jumps*
|
|
976 :ju[mps] Print the jump list (not a motion command). {not in
|
|
977 Vi} {not available without the +jumplist feature}
|
|
978
|
|
979 *jumplist*
|
|
980 Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you
|
|
981 can go to cursor positions before older jumps, and back again. Thus you can
|
|
982 move up and down the list. There is a separate jump list for each window.
|
|
983 The maximum number of entries is fixed at 100.
|
|
984 {not available without the +jumplist feature}
|
|
985
|
|
986 For example, after three jump commands you have this jump list:
|
|
987
|
|
988 jump line col file/line ~
|
|
989 3 1 0 some text ~
|
|
990 2 70 0 another line ~
|
|
991 1 1154 23 end. ~
|
|
992 > ~
|
|
993
|
|
994 The "file/line" column shows the file name, or the text at the jump if it is
|
|
995 in the current file (an indent is removed and a long line is truncated to fit
|
|
996 in the window).
|
|
997
|
|
998 You are currently in line 1167. If you then use the CTRL-O command, the
|
|
999 cursor is put in line 1154. This results in:
|
|
1000
|
|
1001 jump line col file/line ~
|
|
1002 2 1 0 some text ~
|
|
1003 1 70 0 another line ~
|
|
1004 > 0 1154 23 end. ~
|
|
1005 1 1167 0 foo bar ~
|
|
1006
|
|
1007 The pointer will be set at the last used jump position. The next CTRL-O
|
|
1008 command will use the entry above it, the next CTRL-I command will use the
|
|
1009 entry below it. If the pointer is below the last entry, this indicates that
|
|
1010 you did not use a CTRL-I or CTRL-O before. In this case the CTRL-O command
|
|
1011 will cause the cursor position to be added to the jump list, so you can get
|
|
1012 back to the position before the CTRL-O. In this case this is line 1167.
|
|
1013
|
|
1014 With more CTRL-O commands you will go to lines 70 and 1. If you use CTRL-I
|
|
1015 you can go back to 1154 and 1167 again. Note that the number in the "jump"
|
|
1016 column indicates the count for the CTRL-O or CTRL-I command that takes you to
|
|
1017 this position.
|
|
1018
|
|
1019 If you use a jump command, the current line number is inserted at the end of
|
|
1020 the jump list. If the same line was already in the jump list, it is removed.
|
|
1021 The result is that when repeating CTRL-O you will get back to old positions
|
|
1022 only once.
|
|
1023
|
|
1024 When the |:keepjumps| command modifier is used, jumps are not stored in the
|
|
1025 jumplist.
|
|
1026
|
|
1027 After the CTRL-O command that got you into line 1154 you could give another
|
|
1028 jump command (e.g., "G"). The jump list would then become:
|
|
1029
|
|
1030 jump line col file/line ~
|
|
1031 4 1 0 some text ~
|
|
1032 3 70 0 another line ~
|
|
1033 2 1167 0 foo bar ~
|
|
1034 1 1154 23 end. ~
|
|
1035 > ~
|
|
1036
|
|
1037 The line numbers will be adjusted for deleted and inserted lines. This fails
|
|
1038 if you stop editing a file without writing, like with ":n!".
|
|
1039
|
|
1040 When you split a window, the jumplist will be copied to the new window.
|
|
1041
|
|
1042 If you have included the ' item in the 'viminfo' option the jumplist will be
|
|
1043 stored in the viminfo file and restored when starting Vim.
|
|
1044
|
|
1045
|
|
1046 CHANGE LIST JUMPS *changelist* *change-list-jumps* *E664*
|
|
1047
|
|
1048 When making a change the cursor position is remembered. One position is
|
|
1049 remembered for every change that can be undone, unless it is close to a
|
|
1050 previous change. Two commands can be used to jump to positions of changes,
|
|
1051 also those that have been undone:
|
|
1052
|
|
1053 *g;* *E662*
|
|
1054 g; Go to [count] older position in change list.
|
|
1055 If [count] is larger than the number of older change
|
|
1056 positions go to the oldest change.
|
|
1057 If there is no older change an error message is given.
|
|
1058 (not a motion command)
|
|
1059 {not in Vi}
|
|
1060 {not available without the +jumplist feature}
|
|
1061
|
|
1062 *g,* *E663*
|
|
1063 g, Go to [count] newer cursor position in change list.
|
|
1064 Just like "g;| but in the opposite direction.
|
|
1065 (not a motion command)
|
|
1066 {not in Vi}
|
|
1067 {not available without the +jumplist feature}
|
|
1068
|
|
1069 When using a count you jump as far back or forward as possible. Thus you can
|
|
1070 use "999g;" to go to the first change for which the position is still
|
|
1071 remembered. The number of entries in the change list is fixed and is the same
|
|
1072 as for the |jumplist|.
|
|
1073
|
|
1074 When two undo-able changes are in the same line and at a column position less
|
|
1075 than 'textwidth' apart only the last one is remembered. This avoids that a
|
|
1076 sequence of small changes in a line, for example "xxxxx", adds many positions
|
|
1077 to the change list. When 'textwidth' is zero 'wrapmargin' is used. When that
|
|
1078 also isn't set a fixed number of 79 is used. Detail: For the computations
|
|
1079 bytes are used, not characters, to avoid a speed penalty (this only matters
|
|
1080 for multi-byte encodings).
|
|
1081
|
|
1082 Note that when text has been inserted or deleted the cursor position might be
|
|
1083 a bit different from the position of the change. Especially when lines have
|
|
1084 been deleted.
|
|
1085
|
|
1086 When the |:keepjumps| command modifier is used the position of a change is not
|
|
1087 remembered.
|
|
1088
|
|
1089 *:changes*
|
|
1090 :changes Print the change list. A ">" character indicates the
|
|
1091 current position. Just after a change it is below the
|
|
1092 newest entry, indicating that "g;" takes you to the
|
|
1093 newest entry position. The first column indicates the
|
|
1094 count needed to take you to this position. Example:
|
|
1095
|
|
1096 change line col text ~
|
|
1097 3 9 8 bla bla bla
|
|
1098 2 11 57 foo is a bar
|
|
1099 1 14 54 the latest changed line
|
|
1100 >
|
|
1101
|
|
1102 The "3g;" command takes you to line 9. Then the
|
|
1103 output of ":changes is:
|
|
1104
|
|
1105 change line col text ~
|
|
1106 > 0 9 8 bla bla bla
|
|
1107 1 11 57 foo is a bar
|
|
1108 2 14 54 the latest changed line
|
|
1109
|
|
1110 Now you can use "g," to go to line 11 and "2g," to go
|
|
1111 to line 14.
|
|
1112
|
|
1113 ==============================================================================
|
|
1114 9. Various motions *various-motions*
|
|
1115
|
|
1116 *%*
|
|
1117 % Find the next item in this line after or under the
|
|
1118 cursor and jump to its match. |inclusive| motion.
|
|
1119 Items can be:
|
|
1120 ([{}]) parenthesis or (curly/square) brackets
|
|
1121 (this can be changed with the
|
|
1122 'matchpairs' option)
|
|
1123 /* */ start or end of C-style comment
|
|
1124 #if, #ifdef, #else, #elif, #endif
|
|
1125 C preprocessor conditionals (when the
|
|
1126 cursor is on the # or no ([{
|
|
1127 following)
|
|
1128 For other items the matchit plugin can be used, see
|
|
1129 |matchit-install|.
|
|
1130
|
|
1131 When 'cpoptions' contains "M" |cpo-M| backslashes
|
|
1132 before parens and braces are ignored. Without "M" the
|
|
1133 number of backslashes matters: an even number doesn't
|
|
1134 match with an odd number. Thus in "( \) )" and "\( (
|
|
1135 \)" the first and last parenthesis match.
|
|
1136 When the '%' character is not present in 'cpoptions'
|
|
1137 |cpo-%|, parens and braces inside double quotes are
|
|
1138 ignored, unless the number of parens/braces in a line
|
|
1139 is uneven and this line and the previous one does not
|
|
1140 end in a backslash. '(', '{', '[', ']', '}' and ')'
|
|
1141 are also ignored (parens and braces inside single
|
|
1142 quotes). Note that this works fine for C, but not for
|
|
1143 Perl, where single quotes are used for strings.
|
|
1144 No count is allowed ({count}% jumps to a line {count}
|
|
1145 percentage down the file |N%|). Using '%' on
|
|
1146 #if/#else/#endif makes the movement linewise.
|
|
1147
|
|
1148 *[(*
|
|
1149 [( go to [count] previous unmatched '('.
|
|
1150 |exclusive| motion. {not in Vi}
|
|
1151
|
|
1152 *[{*
|
|
1153 [{ go to [count] previous unmatched '{'.
|
|
1154 |exclusive| motion. {not in Vi}
|
|
1155
|
|
1156 *])*
|
|
1157 ]) go to [count] next unmatched ')'.
|
|
1158 |exclusive| motion. {not in Vi}
|
|
1159
|
|
1160 *]}*
|
|
1161 ]} go to [count] next unmatched '}'.
|
|
1162 |exclusive| motion. {not in Vi}
|
|
1163
|
|
1164 The above four commands can be used to go to the start or end of the current
|
|
1165 code block. It is like doing "%" on the '(', ')', '{' or '}' at the other
|
|
1166 end of the code block, but you can do this from anywhere in the code block.
|
|
1167 Very useful for C programs. Example: When standing on "case x:", "[{" will
|
|
1168 bring you back to the switch statement.
|
|
1169
|
|
1170 *]m*
|
|
1171 ]m Go to [count] next start of a method (for Java or
|
|
1172 similar structured language). When not before the
|
|
1173 start of a method, jump to the start or end of the
|
|
1174 class. When no '{' is found after the cursor, this is
|
|
1175 an error. |exclusive| motion. {not in Vi}
|
|
1176 *]M*
|
|
1177 ]M Go to [count] next end of a method (for Java or
|
|
1178 similar structured language). When not before the end
|
|
1179 of a method, jump to the start or end of the class.
|
|
1180 When no '}' is found after the cursor, this is an
|
|
1181 error. |exclusive| motion. {not in Vi}
|
|
1182 *[m*
|
|
1183 [m Go to [count] previous start of a method (for Java or
|
|
1184 similar structured language). When not after the
|
|
1185 start of a method, jump to the start or end of the
|
|
1186 class. When no '{' is found before the cursor this is
|
|
1187 an error. |exclusive| motion. {not in Vi}
|
|
1188 *[M*
|
|
1189 [M Go to [count] previous end of a method (for Java or
|
|
1190 similar structured language). When not after the
|
|
1191 end of a method, jump to the start or end of the
|
|
1192 class. When no '}' is found before the cursor this is
|
|
1193 an error. |exclusive| motion. {not in Vi}
|
|
1194
|
|
1195 The above two commands assume that the file contains a class with methods.
|
|
1196 The class definition is surrounded in '{' and '}'. Each method in the class
|
|
1197 is also surrounded with '{' and '}'. This applies to the Java language. The
|
|
1198 file looks like this: >
|
|
1199
|
|
1200 // comment
|
|
1201 class foo {
|
|
1202 int method_one() {
|
|
1203 body_one();
|
|
1204 }
|
|
1205 int method_two() {
|
|
1206 body_two();
|
|
1207 }
|
|
1208 }
|
|
1209 Starting with the cursor on "body_two()", using "[m" will jump to the '{' at
|
|
1210 the start of "method_two()" (obviously this is much more useful when the
|
|
1211 method is long!). Using "2[m" will jump to the start of "method_one()".
|
|
1212 Using "3[m" will jump to the start of the class.
|
|
1213
|
|
1214 *[#*
|
|
1215 [# go to [count] previous unmatched "#if" or "#else".
|
|
1216 |exclusive| motion. {not in Vi}
|
|
1217
|
|
1218 *]#*
|
|
1219 ]# go to [count] next unmatched "#else" or "#endif".
|
|
1220 |exclusive| motion. {not in Vi}
|
|
1221
|
|
1222 These two commands work in C programs that contain #if/#else/#endif
|
|
1223 constructs. It brings you to the start or end of the #if/#else/#endif where
|
|
1224 the current line is included. You can then use "%" to go to the matching line.
|
|
1225
|
|
1226 *[star* *[/*
|
|
1227 [* or [/ go to [count] previous start of a C comment "/*".
|
|
1228 |exclusive| motion. {not in Vi}
|
|
1229
|
|
1230 *]star* *]/*
|
|
1231 ]* or ]/ go to [count] next end of a C comment "*/".
|
|
1232 |exclusive| motion. {not in Vi}
|
|
1233
|
|
1234
|
|
1235 *H*
|
|
1236 H To line [count] from top (Home) of window (default:
|
|
1237 first line on the window) on the first non-blank
|
|
1238 character |linewise|. See also 'startofline' option.
|
|
1239 Cursor is adjusted for 'scrolloff' option.
|
|
1240
|
|
1241 *M*
|
|
1242 M To Middle line of window, on the first non-blank
|
|
1243 character |linewise|. See also 'startofline' option.
|
|
1244
|
|
1245 *L*
|
|
1246 L To line [count] from bottom of window (default: Last
|
|
1247 line on the window) on the first non-blank character
|
|
1248 |linewise|. See also 'startofline' option.
|
|
1249 Cursor is adjusted for 'scrolloff' option.
|
|
1250
|
|
1251 <LeftMouse> Moves to the position on the screen where the mouse
|
36
|
1252 click is |exclusive|. See also |<LeftMouse>|. If the
|
7
|
1253 position is in a status line, that window is made the
|
|
1254 active window and the cursor is not moved. {not in Vi}
|
|
1255
|
|
1256 vim:tw=78:ts=8:ft=help:norl:
|