blob: 8fe70241e92d223b518b1f22be1ff096419a37aa [file] [log] [blame]
Christian Brabandted892062024-12-14 20:23:39 +01001*motion.txt* For Vim version 9.1. Last change: 2024 Dec 14
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Cursor motions *cursor-motions* *navigation*
8
9These commands move the cursor position. If the new position is off of the
10screen, the screen is scrolled to show the cursor (see also 'scrolljump' and
11'scrolloff' options).
12
131. Motions and operators |operator|
142. Left-right motions |left-right-motions|
153. Up-down motions |up-down-motions|
164. Word motions |word-motions|
175. Text object motions |object-motions|
186. Text object selection |object-select|
197. Marks |mark-motions|
208. Jumps |jump-motions|
219. Various motions |various-motions|
22
23General remarks:
24
25If 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,
27the cursor position is continuously shown in the status line (which slows down
28Vim a little).
29
30Experienced users prefer the hjkl keys because they are always right under
31their fingers. Beginners often prefer the arrow keys, because they do not
32know what the hjkl keys do. The mnemonic value of hjkl is clear from looking
33at the keyboard. Think of j as an arrow pointing downwards.
34
35The 'virtualedit' option can be set to make it possible to move the cursor to
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +010036positions where there is no character or within a multi-column character (like
37a tab).
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39==============================================================================
401. Motions and operators *operator*
41
42The motion commands can be used after an operator command, to have the command
43operate on the text that was moved over. That is the text between the cursor
44position before and after the motion. Operators are generally used to delete
45or change text. The following operators are available:
46
47 |c| c change
48 |d| d delete
49 |y| y yank into register (does not change the text)
50 |~| ~ swap case (only if 'tildeop' is set)
51 |g~| g~ swap case
52 |gu| gu make lowercase
53 |gU| gU make uppercase
54 |!| ! filter through an external program
55 |=| = filter through 'equalprg' or C-indenting if empty
56 |gq| gq text formatting
Bram Moolenaar68e65602019-05-26 21:33:31 +020057 |gw| gw text formatting with no cursor movement
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 |g?| g? ROT13 encoding
59 |>| > shift right
60 |<| < shift left
61 |zf| zf define a fold
Bram Moolenaar6c35bea2012-07-25 17:49:10 +020062 |g@| g@ call function set with the 'operatorfunc' option
Bram Moolenaar2346a632021-06-13 19:02:49 +020063 *motion-count-multiplied*
Bram Moolenaar071d4272004-06-13 20:20:40 +000064If the motion includes a count and the operator also had a count before it,
65the two counts are multiplied. For example: "2d3w" deletes six words.
Bram Moolenaar2346a632021-06-13 19:02:49 +020066 *operator-doubled*
67When doubling the operator it operates on a line. When using a count, before
68or after the first character, that many lines are operated upon. Thus `3dd`
69deletes three lines. A count before and after the first character is
70multiplied, thus `2y3y` yanks six lines.
Christian Brabandtfd4e47e2024-10-06 17:57:53 +020071 *operator-resulting-pos*
Bram Moolenaar071d4272004-06-13 20:20:40 +000072After applying the operator the cursor is mostly left at the start of the text
73that was operated upon. For example, "yfe" doesn't move the cursor, but "yFe"
74moves the cursor leftwards to the "e" where the yank started.
Christian Brabandtfd4e47e2024-10-06 17:57:53 +020075The 'startofline' option applies only to the "d", "<<", "==" and ">>" linewise
76operations.
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
78 *linewise* *characterwise*
79The operator either affects whole lines, or the characters between the start
80and end position. Generally, motions that move between lines affect lines
81(are linewise), and motions that move within a line affect characters (are
82characterwise). However, there are some exceptions.
83
84 *exclusive* *inclusive*
Bram Moolenaar78984f52005-08-01 07:19:10 +000085A character motion is either inclusive or exclusive. When inclusive, the
86start and end position of the motion are included in the operation. When
87exclusive, the last character towards the end of the buffer is not included.
88Linewise motions always include the start and end position.
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
Bram Moolenaar78984f52005-08-01 07:19:10 +000090Which motions are linewise, inclusive or exclusive is mentioned with the
91command. There are however, two general exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921. If the motion is exclusive and the end of the motion is in column 1, the
93 end of the motion is moved to the end of the previous line and the motion
94 becomes inclusive. Example: "}" moves to the first line after a paragraph,
95 but "d}" will not include that line.
Christian Brabandted892062024-12-14 20:23:39 +010096
97 *inclusive-motion-selection-exclusive*
98When 'selection' is "exclusive", |Visual| mode is active and an inclusive
99motion has been used, the cursor position will be adjusted by another
100character to the right, so that visual selction includes the expected text and
101can be acted upon.
102
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000103 *exclusive-linewise*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042. If the motion is exclusive, the end of the motion is in column 1 and the
105 start of the motion was at or before the first non-blank in the line, the
106 motion becomes linewise. Example: If a paragraph begins with some blanks
107 and you do "d}" while standing on the first non-blank, all the lines of
108 the paragraph are deleted, including the blanks. If you do a put now, the
109 deleted lines will be inserted below the cursor position.
110
111Note that when the operator is pending (the operator command is typed, but the
112motion isn't yet), a special set of mappings can be used. See |:omap|.
113
114Instead of first giving the operator and then a motion you can use Visual
115mode: mark the start of the text with "v", move the cursor to the end of the
116text that is to be affected and then hit the operator. The text between the
117start and the cursor position is highlighted, so you can see what text will
118be operated upon. This allows much more freedom, but requires more key
119strokes and has limited redo functionality. See the chapter on Visual mode
120|Visual-mode|.
121
122You can use a ":" command for a motion. For example "d:call FindEnd()".
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100123But this can't be repeated with "." if the command is more than one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124This can be repeated: >
125 d:call search("f")<CR>
126This cannot be repeated: >
127 d:if 1<CR>
128 call search("f")<CR>
129 endif<CR>
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100130Note that when using ":" any motion becomes characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131
Bram Moolenaarc8c88492018-12-27 23:59:26 +0100132 *forced-motion*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133FORCING A MOTION TO BE LINEWISE, CHARACTERWISE OR BLOCKWISE
134
135When a motion is not of the type you would like to use, you can force another
136type by using "v", "V" or CTRL-V just after the operator.
137Example: >
138 dj
139deletes two lines >
140 dvj
141deletes from the cursor position until the character below the cursor >
142 d<C-V>j
143deletes the character under the cursor and the character below the cursor. >
144
145Be careful with forcing a linewise movement to be used characterwise or
146blockwise, the column may not always be defined.
147
148 *o_v*
149v When used after an operator, before the motion command: Force
150 the operator to work characterwise, also when the motion is
151 linewise. If the motion was linewise, it will become
152 |exclusive|.
153 If the motion already was characterwise, toggle
154 inclusive/exclusive. This can be used to make an exclusive
155 motion inclusive and an inclusive motion exclusive.
156
157 *o_V*
158V When used after an operator, before the motion command: Force
159 the operator to work linewise, also when the motion is
160 characterwise.
161
162 *o_CTRL-V*
163CTRL-V When used after an operator, before the motion command: Force
164 the operator to work blockwise. This works like Visual block
165 mode selection, with the corners defined by the cursor
166 position before and after the motion.
167
168==============================================================================
1692. Left-right motions *left-right-motions*
170
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100171These commands move the cursor to the specified column in the current line.
172They stop at the first column and at the end of the line, except "$", which
173may move to one of the next lines. See 'whichwrap' option to make some of the
174commands move across line boundaries.
175
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176h or *h*
177<Left> or *<Left>*
178CTRL-H or *CTRL-H* *<BS>*
179<BS> [count] characters to the left. |exclusive| motion.
180 Note: If you prefer <BS> to delete a character, use
Milly89872f52024-10-05 17:16:18 +0200181 the mapping: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182 :map CTRL-V<BS> X
Milly89872f52024-10-05 17:16:18 +0200183< (to enter "CTRL-V<BS>" type the CTRL-V key, followed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184 by the <BS> key)
185 See |:fixdel| if the <BS> key does not do what you
186 want.
187
188l or *l*
189<Right> or *<Right>* *<Space>*
190<Space> [count] characters to the right. |exclusive| motion.
Bram Moolenaarf2571c62015-06-09 19:44:55 +0200191 See the 'whichwrap' option for adjusting the behavior
192 at end of line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193
194 *0*
1950 To the first character of the line. |exclusive|
Bram Moolenaar9964e462007-05-05 17:54:07 +0000196 motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
198 *<Home>* *<kHome>*
199<Home> To the first character of the line. |exclusive|
Bram Moolenaar9964e462007-05-05 17:54:07 +0000200 motion. When moving up or down next, stay in same
201 TEXT column (if possible). Most other commands stay
202 in the same SCREEN column. <Home> works like "1|",
203 which differs from "0" when the line starts with a
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200204 <Tab>.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205
206 *^*
207^ To the first non-blank character of the line.
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100208 |exclusive| motion. Any count is ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209
210 *$* *<End>* *<kEnd>*
211$ or <End> To the end of the line. When a count is given also go
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100212 [count - 1] lines downward, or as far is possible.
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200213 |inclusive| motion. If a count of 2 or larger is
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100214 given and the cursor is on the last line, that is an
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200215 error and the cursor doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216 In Visual mode the cursor goes to just after the last
217 character in the line.
218 When 'virtualedit' is active, "$" may move the cursor
219 back from past the end of the line to the last
220 character in the line.
221
222 *g_*
223g_ To the last non-blank character of the line and
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200224 [count - 1] lines downward |inclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
226 *g0* *g<Home>*
227g0 or g<Home> When lines wrap ('wrap' on): To the first character of
228 the screen line. |exclusive| motion. Differs from
229 "0" when a line is wider than the screen.
230 When lines don't wrap ('wrap' off): To the leftmost
231 character of the current line that is on the screen.
232 Differs from "0" when the first character of the line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200233 is not on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234
235 *g^*
236g^ When lines wrap ('wrap' on): To the first non-blank
237 character of the screen line. |exclusive| motion.
238 Differs from "^" when a line is wider than the screen.
239 When lines don't wrap ('wrap' off): To the leftmost
240 non-blank character of the current line that is on the
241 screen. Differs from "^" when the first non-blank
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200242 character of the line is not on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
244 *gm*
245gm Like "g0", but half a screenwidth to the right (or as
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200246 much as possible).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
Bram Moolenaar1ff14ba2019-11-02 14:09:23 +0100248 *gM*
Bram Moolenaar8b530c12019-10-28 02:13:05 +0100249gM Like "g0", but to halfway the text of the line.
250 With a count: to this percentage of text in the line.
251 Thus "10gM" is near the start of the text and "90gM"
252 is near the end of the text.
253
Christian Brabandtb5f6fe92023-08-19 15:53:16 +0200254 *g$*
255g$ When lines wrap ('wrap' on): To the last character of
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 the screen line and [count - 1] screen lines downward
257 |inclusive|. Differs from "$" when a line is wider
258 than the screen.
259 When lines don't wrap ('wrap' off): To the rightmost
260 character of the current line that is visible on the
261 screen. Differs from "$" when the last character of
262 the line is not on the screen or when a count is used.
263 Additionally, vertical movements keep the column,
264 instead of going to the end of the line.
Bram Moolenaar9ba7e172013-07-17 22:37:26 +0200265 When 'virtualedit' is enabled moves to the end of the
266 screen line.
zeertzjq654bdbb2023-08-20 18:24:20 +0200267
268 *g<End>* *g<kEnd>*
Christian Brabandtb5f6fe92023-08-19 15:53:16 +0200269g<End> Like |g$| but to the last non-blank character
270 instead of the last character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271
272 *bar*
273| To screen column [count] in the current line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100274 |exclusive| motion. Ceci n'est pas une pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
276 *f*
277f{char} To [count]'th occurrence of {char} to the right. The
278 cursor is placed on {char} |inclusive|.
279 {char} can be entered as a digraph |digraph-arg|.
280 When 'encoding' is set to Unicode, composing
281 characters may be used, see |utf-8-char-arg|.
282 |:lmap| mappings apply to {char}. The CTRL-^ command
283 in Insert mode can be used to switch this on/off
284 |i_CTRL-^|.
285
286 *F*
287F{char} To the [count]'th occurrence of {char} to the left.
Bram Moolenaar78984f52005-08-01 07:19:10 +0000288 The cursor is placed on {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 {char} can be entered like with the |f| command.
290
291 *t*
292t{char} Till before [count]'th occurrence of {char} to the
293 right. The cursor is placed on the character left of
294 {char} |inclusive|.
295 {char} can be entered like with the |f| command.
296
297 *T*
298T{char} Till after [count]'th occurrence of {char} to the
299 left. The cursor is placed on the character right of
Bram Moolenaar78984f52005-08-01 07:19:10 +0000300 {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 {char} can be entered like with the |f| command.
302
303 *;*
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200304; Repeat latest f, t, F or T [count] times. See |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305
306 *,*
307, Repeat latest f, t, F or T in opposite direction
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200308 [count] times. See also |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310==============================================================================
3113. Up-down motions *up-down-motions*
312
313k or *k*
314<Up> or *<Up>* *CTRL-P*
315CTRL-P [count] lines upward |linewise|.
316
317j or *j*
318<Down> or *<Down>*
319CTRL-J or *CTRL-J*
320<NL> or *<NL>* *CTRL-N*
321CTRL-N [count] lines downward |linewise|.
322
323gk or *gk* *g<Up>*
324g<Up> [count] display lines upward. |exclusive| motion.
325 Differs from 'k' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200326 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
328gj or *gj* *g<Down>*
329g<Down> [count] display lines downward. |exclusive| motion.
330 Differs from 'j' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200331 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332
333 *-*
334- <minus> [count] lines upward, on the first non-blank
335 character |linewise|.
336
337+ or *+*
338CTRL-M or *CTRL-M* *<CR>*
339<CR> [count] lines downward, on the first non-blank
340 character |linewise|.
341
342 *_*
343_ <underscore> [count] - 1 lines downward, on the first non-blank
344 character |linewise|.
345
346 *G*
347G Goto line [count], default last line, on the first
348 non-blank character |linewise|. If 'startofline' not
349 set, keep the same column.
Bram Moolenaar26967612019-03-17 17:13:16 +0100350 G is one of the |jump-motions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351
352 *<C-End>*
353<C-End> Goto line [count], default last line, on the last
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200354 character |inclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355
356<C-Home> or *gg* *<C-Home>*
357gg Goto line [count], default first line, on the first
358 non-blank character |linewise|. If 'startofline' not
359 set, keep the same column.
360
Bram Moolenaar9b451252012-08-15 17:43:31 +0200361 *:[range]*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100362:[range] Set the cursor on the last line number in [range].
Mohamed Akramc25a7082024-07-12 20:17:55 +0200363 In Ex mode, print the lines in [range].
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100364 [range] can also be just one line number, e.g., ":1"
365 or ":'m".
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200366 In contrast with |G| this command does not modify the
367 |jumplist|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 *N%*
369{count}% Go to {count} percentage in the file, on the first
370 non-blank in the line |linewise|. To compute the new
371 line number this formula is used:
372 ({count} * number-of-lines + 99) / 100
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200373 See also 'startofline' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
375:[range]go[to] [count] *:go* *:goto* *go*
Christian Brabandtf8702ae2024-08-28 20:39:24 +0200376[count]go Go to [count] byte in the buffer. |exclusive| motion.
377 Default [count] is one, start of the file. When
378 giving [range], the last number in it used as the byte
379 count. End-of-line characters are counted depending
380 on the current 'fileformat' setting.
Bram Moolenaar251e1912011-06-19 05:09:16 +0200381 Also see the |line2byte()| function, and the 'o'
382 option in 'statusline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 {not available when compiled without the
384 |+byte_offset| feature}
385
386These commands move to the specified line. They stop when reaching the first
387or the last line. The first two commands put the cursor in the same column
388(if possible) as it was after the last command that changed the column,
389except after the "$" command, then the cursor will be put on the last
390character of the line.
391
Bram Moolenaar7c626922005-02-07 22:01:03 +0000392If "k", "-" or CTRL-P is used with a [count] and there are less than [count]
393lines above the cursor and the 'cpo' option includes the "-" flag it is an
394error. |cpo--|.
395
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396==============================================================================
3974. Word motions *word-motions*
398
399<S-Right> or *<S-Right>* *w*
400w [count] words forward. |exclusive| motion.
401
402<C-Right> or *<C-Right>* *W*
403W [count] WORDS forward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000404 If <C-Right> does not work, check out
405 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406
407 *e*
408e Forward to the end of word [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000409 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
411 *E*
412E Forward to the end of WORD [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000413 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
415<S-Left> or *<S-Left>* *b*
416b [count] words backward. |exclusive| motion.
417
418<C-Left> or *<C-Left>* *B*
419B [count] WORDS backward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000420 If <C-Left> does not work, check out
421 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422
423 *ge*
424ge Backward to the end of word [count] |inclusive|.
425
426 *gE*
427gE Backward to the end of WORD [count] |inclusive|.
428
429These commands move over words or WORDS.
430 *word*
431A word consists of a sequence of letters, digits and underscores, or a
432sequence of other non-blank characters, separated with white space (spaces,
Bram Moolenaar4770d092006-01-12 23:22:24 +0000433tabs, <EOL>). This can be changed with the 'iskeyword' option. An empty line
434is also considered to be a word.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 *WORD*
436A WORD consists of a sequence of non-blank characters, separated with white
Bram Moolenaar4770d092006-01-12 23:22:24 +0000437space. An empty line is also considered to be a WORD.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439A sequence of folded lines is counted for one word of a single character.
440"w" and "W", "e" and "E" move to the start/end of the first word or WORD after
441a range of folded lines. "b" and "B" move to the start of the first word or
442WORD before the fold.
443
444Special case: "cw" and "cW" are treated like "ce" and "cE" if the cursor is
445on a non-blank. This is because "cw" is interpreted as change-word, and a
Christian Brabandt22105fd2024-07-15 20:51:11 +0200446word does not include the following white space (see also |cw|).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447
448Another special case: When using the "w" motion in combination with an
449operator and the last word moved over is at the end of a line, the end of
450that word becomes the end of the operated text, not the first word in the
451next line.
452
453The original Vi implementation of "e" is buggy. For example, the "e" command
454will stop on the first character of a line if the previous line was empty.
455But when you use "2e" this does not happen. In Vim "ee" and "2e" are the
456same, which is more logical. However, this causes a small incompatibility
457between Vi and Vim.
458
459==============================================================================
4605. Text object motions *object-motions*
461
462 *(*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100463( [count] |sentence|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464
465 *)*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100466) [count] |sentence|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468 *{*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100469{ [count] |paragraph|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
471 *}*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100472} [count] |paragraph|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473
474 *]]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100475]] [count] |section|s forward or to the next '{' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000476 first column. When used after an operator, then also
477 stops below a '}' in the first column. |exclusive|
478 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479
480 *][*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100481][ [count] |section|s forward or to the next '}' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000482 first column. |exclusive|
483 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
485 *[[*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100486[[ [count] |section|s backward or to the previous '{' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000487 the first column. |exclusive|
488 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000489
490 *[]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100491[] [count] |section|s backward or to the previous '}' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000492 the first column. |exclusive|
493 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494
495These commands move over three kinds of text objects.
496
497 *sentence*
498A sentence is defined as ending at a '.', '!' or '?' followed by either the
499end of a line, or by a space or tab. Any number of closing ')', ']', '"'
500and ''' characters may appear after the '.', '!' or '?' before the spaces,
501tabs or end of line. A paragraph and section boundary is also a sentence
502boundary.
503If the 'J' flag is present in 'cpoptions', at least two spaces have to
504follow the punctuation mark; <Tab>s are not recognized as white space.
505The definition of a sentence cannot be changed.
506
507 *paragraph*
508A paragraph begins after each empty line, and also at each of a set of
509paragraph macros, specified by the pairs of characters in the 'paragraphs'
Bram Moolenaar446cb832008-06-24 21:56:24 +0000510option. The default is "IPLPPPQPP TPHPLIPpLpItpplpipbp", which corresponds to
511the macros ".IP", ".LP", etc. (These are nroff macros, so the dot must be in
512the first column). A section boundary is also a paragraph boundary.
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000513Note that a blank line (only containing white space) is NOT a paragraph
514boundary.
515Also note that this does not include a '{' or '}' in the first column. When
516the '{' flag is in 'cpoptions' then '{' in the first column is used as a
517paragraph boundary |posix|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518
519 *section*
520A section begins after a form-feed (<C-L>) in the first column and at each of
521a set of section macros, specified by the pairs of characters in the
522'sections' option. The default is "SHNHH HUnhsh", which defines a section to
523start at the nroff macros ".SH", ".NH", ".H", ".HU", ".nh" and ".sh".
524
Bram Moolenaar207f0092020-08-30 17:20:20 +0200525The "]]" and "[[" commands stop at the '{' in the first column. This is
526useful to find the start of a function in a C program. To search for a '}' in
527the first column, the end of a C function, use "][" (forward) or "[]"
528(backward). Note that the first character of the command determines the
529search direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530
531If your '{' or '}' are not in the first column, and you would like to use "[["
532and "]]" anyway, try these mappings: >
533 :map [[ ?{<CR>w99[{
534 :map ][ /}<CR>b99]}
535 :map ]] j0[[%/{<CR>
536 :map [] k$][%?}<CR>
537[type these literally, see |<>|]
538
539==============================================================================
5406. Text object selection *object-select* *text-objects*
541 *v_a* *v_i*
542
543This is a series of commands that can only be used while in Visual mode or
544after an operator. The commands that start with "a" select "a"n object
545including white space, the commands starting with "i" select an "inner" object
546without white space, or just the white space. Thus the "inner" commands
547always select less text than the "a" commands.
548
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200549Also see `gn` and `gN`, operating on the last search pattern.
550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 *v_aw* *aw*
552aw "a word", select [count] words (see |word|).
553 Leading or trailing white space is included, but not
554 counted.
555 When used in Visual linewise mode "aw" switches to
556 Visual characterwise mode.
557
558 *v_iw* *iw*
559iw "inner word", select [count] words (see |word|).
560 White space between words is counted too.
561 When used in Visual linewise mode "iw" switches to
562 Visual characterwise mode.
563
564 *v_aW* *aW*
565aW "a WORD", select [count] WORDs (see |WORD|).
566 Leading or trailing white space is included, but not
567 counted.
568 When used in Visual linewise mode "aW" switches to
569 Visual characterwise mode.
570
571 *v_iW* *iW*
572iW "inner WORD", select [count] WORDs (see |WORD|).
573 White space between words is counted too.
574 When used in Visual linewise mode "iW" switches to
575 Visual characterwise mode.
576
577 *v_as* *as*
578as "a sentence", select [count] sentences (see
579 |sentence|).
580 When used in Visual mode it is made characterwise.
581
582 *v_is* *is*
583is "inner sentence", select [count] sentences (see
584 |sentence|).
585 When used in Visual mode it is made characterwise.
586
587 *v_ap* *ap*
588ap "a paragraph", select [count] paragraphs (see
589 |paragraph|).
590 Exception: a blank line (only containing white space)
591 is also a paragraph boundary.
592 When used in Visual mode it is made linewise.
593
594 *v_ip* *ip*
595ip "inner paragraph", select [count] paragraphs (see
596 |paragraph|).
597 Exception: a blank line (only containing white space)
598 is also a paragraph boundary.
599 When used in Visual mode it is made linewise.
600
601a] *v_a]* *v_a[* *a]* *a[*
602a[ "a [] block", select [count] '[' ']' blocks. This
603 goes backwards to the [count] unclosed '[', and finds
604 the matching ']'. The enclosed text is selected,
Christian Brabandt02902b52023-09-29 00:09:28 +0200605 including the '[' and ']'. The |cpo-M| option flag
606 is used to handle escaped brackets.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 When used in Visual mode it is made characterwise.
608
609i] *v_i]* *v_i[* *i]* *i[*
610i[ "inner [] block", select [count] '[' ']' blocks. This
611 goes backwards to the [count] unclosed '[', and finds
612 the matching ']'. The enclosed text is selected,
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100613 excluding the '[' and ']'. It's an error to select an
614 empty inner block like "[]". The |cpo-M| option flag
Christian Brabandt02902b52023-09-29 00:09:28 +0200615 is used to handle escaped brackets.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 When used in Visual mode it is made characterwise.
617
618a) *v_a)* *a)* *a(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200619a( *vab* *v_ab* *v_a(* *ab*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620ab "a block", select [count] blocks, from "[count] [(" to
621 the matching ')', including the '(' and ')' (see
622 |[(|). Does not include white space outside of the
Christian Brabandt02902b52023-09-29 00:09:28 +0200623 parenthesis. The |cpo-M| option flag is used to
624 handle escaped parenthesis.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 When used in Visual mode it is made characterwise.
626
627i) *v_i)* *i)* *i(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200628i( *vib* *v_ib* *v_i(* *ib*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629ib "inner block", select [count] blocks, from "[count] [("
630 to the matching ')', excluding the '(' and ')' (see
Bram Moolenaare1f3fd12022-08-15 18:51:32 +0100631 |[(|). If the cursor is not inside a () block, then
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100632 find the next "(". It's an error to select an empty
633 inner block like "()". The |cpo-M| option flag
Christian Brabandt02902b52023-09-29 00:09:28 +0200634 is used to handle escaped parenthesis.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000635 When used in Visual mode it is made characterwise.
636
637a> *v_a>* *v_a<* *a>* *a<*
638a< "a <> block", select [count] <> blocks, from the
639 [count]'th unmatched '<' backwards to the matching
Christian Brabandt02902b52023-09-29 00:09:28 +0200640 '>', including the '<' and '>'. The |cpo-M| option flag
641 is used to handle escaped '<' and '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 When used in Visual mode it is made characterwise.
643
644i> *v_i>* *v_i<* *i>* *i<*
645i< "inner <> block", select [count] <> blocks, from
646 the [count]'th unmatched '<' backwards to the matching
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100647 '>', excluding the '<' and '>'. It's an error to
648 select an empty inner block like "<>". The |cpo-M|
649 option flag is used to handle escaped '<' and '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 When used in Visual mode it is made characterwise.
651
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000652 *v_at* *at*
653at "a tag block", select [count] tag blocks, from the
654 [count]'th unmatched "<aaa>" backwards to the matching
655 "</aaa>", including the "<aaa>" and "</aaa>".
656 See |tag-blocks| about the details.
657 When used in Visual mode it is made characterwise.
Bram Moolenaar88774872022-08-16 20:24:29 +0100658 Only available when compiled with the |+eval| feature.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000659
660 *v_it* *it*
661it "inner tag block", select [count] tag blocks, from the
662 [count]'th unmatched "<aaa>" backwards to the matching
663 "</aaa>", excluding the "<aaa>" and "</aaa>".
664 See |tag-blocks| about the details.
665 When used in Visual mode it is made characterwise.
666
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667a} *v_a}* *a}* *a{*
668a{ *v_aB* *v_a{* *aB*
669aB "a Block", select [count] Blocks, from "[count] [{" to
670 the matching '}', including the '{' and '}' (see
Christian Brabandt02902b52023-09-29 00:09:28 +0200671 |[{|). The |cpo-M| option flag is used to handle
672 escaped braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 When used in Visual mode it is made characterwise.
674
675i} *v_i}* *i}* *i{*
676i{ *v_iB* *v_i{* *iB*
677iB "inner Block", select [count] Blocks, from "[count] [{"
678 to the matching '}', excluding the '{' and '}' (see
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100679 |[{|). It's an error to select an empty inner block
680 like "{}". The |cpo-M| option flag is used to handle
Christian Brabandt02902b52023-09-29 00:09:28 +0200681 escaped braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 When used in Visual mode it is made characterwise.
683
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000684a" *v_aquote* *aquote*
685a' *v_a'* *a'*
686a` *v_a`* *a`*
687 "a quoted string". Selects the text from the previous
Bram Moolenaar5a305422006-04-28 22:38:25 +0000688 quote until the next quote. The 'quoteescape' option
689 is used to skip escaped quotes.
690 Only works within one line.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000691 When the cursor starts on a quote, Vim will figure out
692 which quote pairs form a string by searching from the
693 start of the line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100694 Any trailing white space is included, unless there is
695 none, then leading white space is included.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000696 When used in Visual mode it is made characterwise.
697 Repeating this object in Visual mode another string is
698 included. A count is currently not used.
699
700i" *v_iquote* *iquote*
701i' *v_i'* *i'*
702i` *v_i`* *i`*
703 Like a", a' and a`, but exclude the quotes and
704 repeating won't extend the Visual selection.
Bram Moolenaarab194812005-09-14 21:40:12 +0000705 Special case: With a count of 2 the quotes are
706 included, but no extra white space as with a"/a'/a`.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000707
Christian Brabandt346ac142023-09-18 20:11:37 +0200708 *o_object-select*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709When used after an operator:
710For non-block objects:
711 For the "a" commands: The operator applies to the object and the white
712 space after the object. If there is no white space after the object
713 or when the cursor was in the white space before the object, the white
714 space before the object is included.
715 For the "inner" commands: If the cursor was on the object, the
716 operator applies to the object. If the cursor was on white space, the
717 operator applies to the white space.
718For a block object:
719 The operator applies to the block where the cursor is in, or the block
720 on which the cursor is on one of the braces. For the "inner" commands
721 the surrounding braces are excluded. For the "a" commands, the braces
722 are included.
723
Christian Brabandt346ac142023-09-18 20:11:37 +0200724 *v_object-select*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725When used in Visual mode:
726When start and end of the Visual area are the same (just after typing "v"):
727 One object is selected, the same as for using an operator.
728When start and end of the Visual area are not the same:
729 For non-block objects the area is extended by one object or the white
730 space up to the next object, or both for the "a" objects. The
731 direction in which this happens depends on which side of the Visual
732 area the cursor is. For the block objects the block is extended one
733 level outwards.
734
735For illustration, here is a list of delete commands, grouped from small to big
736objects. Note that for a single character and a whole line the existing vi
737movement commands are used.
738 "dl" delete character (alias: "x") |dl|
739 "diw" delete inner word *diw*
740 "daw" delete a word *daw*
741 "diW" delete inner WORD (see |WORD|) *diW*
742 "daW" delete a WORD (see |WORD|) *daW*
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200743 "dgn" delete the next search pattern match *dgn*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 "dd" delete one line |dd|
745 "dis" delete inner sentence *dis*
746 "das" delete a sentence *das*
747 "dib" delete inner '(' ')' block *dib*
748 "dab" delete a '(' ')' block *dab*
749 "dip" delete inner paragraph *dip*
750 "dap" delete a paragraph *dap*
751 "diB" delete inner '{' '}' block *diB*
752 "daB" delete a '{' '}' block *daB*
753
754Note the difference between using a movement command and an object. The
755movement command operates from here (cursor position) to where the movement
756takes us. When using an object the whole object is operated upon, no matter
757where on the object the cursor is. For example, compare "dw" and "daw": "dw"
758deletes from the cursor position to the start of the next word, "daw" deletes
759the word under the cursor and the space after or before it.
760
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000761
762Tag blocks *tag-blocks*
763
764For the "it" and "at" text objects an attempt is done to select blocks between
765matching tags for HTML and XML. But since these are not completely compatible
766there are a few restrictions.
767
768The normal method is to select a <tag> until the matching </tag>. For "at"
769the tags are included, for "it" they are excluded. But when "it" is repeated
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000770the tags will be included (otherwise nothing would change). Also, "it" used
771on a tag block with no contents will select the leading tag.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000772
773"<aaa/>" items are skipped. Case is ignored, also for XML where case does
774matter.
775
776In HTML it is possible to have a tag like <br> or <meta ...> without a
777matching end tag. These are ignored.
778
779The text objects are tolerant about mistakes. Stray end tags are ignored.
780
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781==============================================================================
7827. Marks *mark-motions* *E20* *E78*
783
784Jumping to a mark can be done in two ways:
7851. With ` (backtick): The cursor is positioned at the specified location
786 and the motion is |exclusive|.
7872. With ' (single quote): The cursor is positioned on the first non-blank
788 character in the line of the specified location and
789 the motion is linewise.
790
791 *m* *mark* *Mark*
792m{a-zA-Z} Set mark {a-zA-Z} at cursor position (does not move
793 the cursor, this is not a motion command).
794
795 *m'* *m`*
796m' or m` Set the previous context mark. This can be jumped to
797 with the "''" or "``" command (does not move the
798 cursor, this is not a motion command).
799
800 *m[* *m]*
801m[ or m] Set the |'[| or |']| mark. Useful when an operator is
802 to be simulated by multiple commands. (does not move
803 the cursor, this is not a motion command).
804
Bram Moolenaar30b65812012-07-12 22:01:11 +0200805 *m<* *m>*
806m< or m> Set the |'<| or |'>| mark. Useful to change what the
807 `gv` command selects. (does not move the cursor, this
808 is not a motion command).
809 Note that the Visual mode cannot be set, only the
810 start and end position.
811
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 *:ma* *:mark* *E191*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000813:[range]ma[rk] {a-zA-Z'}
814 Set mark {a-zA-Z'} at last line number in [range],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 column 0. Default is cursor line.
816
817 *:k*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000818:[range]k{a-zA-Z'} Same as :mark, but the space before the mark name can
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 be omitted.
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000820 This command is not supported in |Vim9| script,
821 because it is too easily confused with a variable
822 name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823
824 *'* *'a* *`* *`a*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000825'{a-z} `{a-z} Jump to the mark {a-z} in the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826
827 *'A* *'0* *`A* *`0*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000828'{A-Z0-9} `{A-Z0-9} To the mark {A-Z0-9} in the file where it was set (not
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200829 a motion command when in another file).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830
831 *g'* *g'a* *g`* *g`a*
832g'{mark} g`{mark}
833 Jump to the {mark}, but don't change the jumplist when
834 jumping within the current buffer. Example: >
835 g`"
836< jumps to the last known position in a file. See
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000837 $VIMRUNTIME/vimrc_example.vim.
838 Also see |:keepjumps|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839
840 *:marks*
841:marks List all the current marks (not a motion command).
842 The |'(|, |')|, |'{| and |'}| marks are not listed.
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000843 The first column has number zero.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200844
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 *E283*
846:marks {arg} List the marks that are mentioned in {arg} (not a
847 motion command). For example: >
848 :marks aB
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200849< to list marks 'a' and 'B'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000851 *:delm* *:delmarks*
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000852:delm[arks] {marks} Delete the specified marks. Marks that can be deleted
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000853 include A-Z and 0-9. You cannot delete the ' mark.
854 They can be specified by giving the list of mark
855 names, or with a range, separated with a dash. Spaces
856 are ignored. Examples: >
857 :delmarks a deletes mark a
858 :delmarks a b 1 deletes marks a, b and 1
859 :delmarks Aa deletes marks A and a
860 :delmarks p-z deletes marks in the range p to z
861 :delmarks ^.[] deletes marks ^ . [ ]
862 :delmarks \" deletes mark "
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000863
864:delm[arks]! Delete all marks for the current buffer, but not marks
865 A-Z or 0-9.
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000866
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867A mark is not visible in any way. It is just a position in the file that is
868remembered. Do not confuse marks with named registers, they are totally
869unrelated.
870
871'a - 'z lowercase marks, valid within one file
872'A - 'Z uppercase marks, also called file marks, valid between files
873'0 - '9 numbered marks, set from .viminfo file
874
875Lowercase marks 'a to 'z are remembered as long as the file remains in the
876buffer list. If you remove the file from the buffer list, all its marks are
877lost. If you delete a line that contains a mark, that mark is erased.
878
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879Lowercase marks can be used in combination with operators. For example: "d't"
880deletes the lines from the cursor position to mark 't'. Hint: Use mark 't' for
881Top, 'b' for Bottom, etc.. Lowercase marks are restored when using undo and
882redo.
883
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200884Uppercase marks 'A to 'Z include the file name. You can use them to jump from
885file to file. You can only use an uppercase mark with an operator if the mark
886is in the current file. The line number of the mark remains correct, even if
887you insert/delete lines or edit another file for a moment. When the 'viminfo'
888option is not empty, uppercase marks are kept in the .viminfo file. See
889|viminfo-file-marks|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890
891Numbered marks '0 to '9 are quite different. They can not be set directly.
892They are only present when using a viminfo file |viminfo-file|. Basically '0
893is the location of the cursor when you last exited Vim, '1 the last but one
894time, etc. Use the "r" flag in 'viminfo' to specify files for which no
895Numbered mark should be stored. See |viminfo-file-marks|.
896
897
898 *'[* *`[*
899'[ `[ To the first character of the previously changed
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200900 or yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901
902 *']* *`]*
903'] `] To the last character of the previously changed or
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200904 yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905
906After executing an operator the Cursor is put at the beginning of the text
907that was operated upon. After a put command ("p" or "P") the cursor is
908sometimes placed at the first inserted line and sometimes on the last inserted
909character. The four commands above put the cursor at either end. Example:
910After yanking 10 lines you want to go to the last one of them: "10Y']". After
911inserting several lines with the "p" command you want to jump to the lowest
912inserted line: "p']". This also works for text that has been inserted.
913
914Note: After deleting text, the start and end positions are the same, except
915when using blockwise Visual mode. These commands do not work when no change
916was made yet in the current file.
917
918 *'<* *`<*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000919'< `< To the first line or character of the last selected
920 Visual area in the current buffer. For block mode it
921 may also be the last character in the first line (to
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200922 be able to define the block).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923
924 *'>* *`>*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000925'> `> To the last line or character of the last selected
926 Visual area in the current buffer. For block mode it
927 may also be the first character of the last line (to
928 be able to define the block). Note that 'selection'
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000929 applies, the position may be just after the Visual
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200930 area.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931
932 *''* *``*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000933'' `` To the position before the latest jump, or where the
934 last "m'" or "m`" command was given. Not set when the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 |:keepjumps| command modifier was used.
936 Also see |restore-position|.
937
938 *'quote* *`quote*
939'" `" To the cursor position when last exiting the current
940 buffer. Defaults to the first character of the first
941 line. See |last-position-jump| for how to use this
942 for each opened file.
943 Only one position is remembered per buffer, not one
944 for each window. As long as the buffer is visible in
945 a window the position won't be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946
947 *'^* *`^*
948'^ `^ To the position where the cursor was the last time
Bram Moolenaar81695252004-12-29 20:58:21 +0000949 when Insert mode was stopped. This is used by the
950 |gi| command. Not set when the |:keepjumps| command
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200951 modifier was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952
953 *'.* *`.*
954'. `. To the position where the last change was made. The
955 position is at or near where the change started.
956 Sometimes a command is executed as several changes,
957 then the position can be near the end of what the
958 command changed. For example when inserting a word,
959 the position will be on the last character.
Bram Moolenaar51628222016-12-01 23:03:28 +0100960 To jump to older changes use |g;|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961
962 *'(* *`(*
963'( `( To the start of the current sentence, like the |(|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200964 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965
966 *')* *`)*
967') `) To the end of the current sentence, like the |)|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200968 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969
970 *'{* *`{*
971'{ `{ To the start of the current paragraph, like the |{|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200972 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973
974 *'}* *`}*
975'} `} To the end of the current paragraph, like the |}|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200976 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977
978These commands are not marks themselves, but jump to a mark:
979
980 *]'*
981]' [count] times to next line with a lowercase mark below
982 the cursor, on the first non-blank character in the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200983 line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985 *]`*
Bram Moolenaardad44732021-03-31 20:07:33 +0200986]` [count] times to lowercase mark after the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988 *['*
989[' [count] times to previous line with a lowercase mark
990 before the cursor, on the first non-blank character in
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200991 the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992
993 *[`*
994[` [count] times to lowercase mark before the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200997:loc[kmarks] {command} *:loc* *:lock* *:lockmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 Execute {command} without adjusting marks. This is
999 useful when changing text in a way that the line count
1000 will be the same when the change has completed.
1001 WARNING: When the line count does change, marks below
1002 the change will keep their line number, thus move to
1003 another text line.
1004 These items will not be adjusted for deleted/inserted
1005 lines:
1006 - lower case letter marks 'a - 'z
1007 - upper case letter marks 'A - 'Z
1008 - numbered marks '0 - '9
1009 - last insert position '^
1010 - last change position '.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001011 - last affected text area '[ and ']
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 - the Visual area '< and '>
1013 - line numbers in placed signs
1014 - line numbers in quickfix positions
1015 - positions in the |jumplist|
1016 - positions in the |tagstack|
1017 These items will still be adjusted:
1018 - previous context mark ''
1019 - the cursor position
1020 - the view of a window on a buffer
1021 - folds
1022 - diffs
1023
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02001024:kee[pmarks] {command} *:kee* *:keep* *:keepmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 Currently only has effect for the filter command
1026 |:range!|:
1027 - When the number of lines after filtering is equal to
1028 or larger than before, all marks are kept at the
1029 same line number.
1030 - When the number of lines decreases, the marks in the
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001031 lines that disappeared are deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 In any case the marks below the filtered text have
1033 their line numbers adjusted, thus stick to the text,
1034 as usual.
1035 When the 'R' flag is missing from 'cpoptions' this has
1036 the same effect as using ":keepmarks".
1037
1038 *:keepj* *:keepjumps*
1039:keepj[umps] {command}
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001040 Moving around in {command} does not change the |''|,
1041 |'.| and |'^| marks, the |jumplist| or the
1042 |changelist|.
1043 Useful when making a change or inserting text
1044 automatically and the user doesn't want to go to this
1045 position. E.g., when updating a "Last change"
1046 timestamp in the first line: >
1047
Bram Moolenaare5180522005-12-10 20:19:46 +00001048 :let lnum = line(".")
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001049 :keepjumps normal gg
1050 :call SetLastChange()
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001051 :keepjumps exe "normal " .. lnum .. "G"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001052<
1053 Note that ":keepjumps" must be used for every command.
1054 When invoking a function the commands in that function
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001055 can still change the jumplist. Also, for
Bram Moolenaar13065c42005-01-08 16:08:21 +00001056 ":keepjumps exe 'command '" the "command" won't keep
1057 jumps. Instead use: ":exe 'keepjumps command'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
1059==============================================================================
10608. Jumps *jump-motions*
1061
Bram Moolenaarb477af22018-07-15 20:20:18 +02001062A "jump" is a command that normally moves the cursor several lines away. If
1063you make the cursor "jump" the position of the cursor before the jump is
Bram Moolenaar26967612019-03-17 17:13:16 +01001064remembered. You can return to that position with the "''" and "``" commands,
Bram Moolenaarb477af22018-07-15 20:20:18 +02001065unless the line containing that position was changed or deleted. The
1066following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N",
1067"%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and the
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +01001068commands that start editing a new file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069
1070 *CTRL-O*
1071CTRL-O Go to [count] Older cursor position in jump list
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001072 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073
1074<Tab> or *CTRL-I* *<Tab>*
1075CTRL-I Go to [count] newer cursor position in jump list
1076 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077
Bram Moolenaardad44732021-03-31 20:07:33 +02001078 NOTE: In the GUI and in a terminal supporting
1079 |modifyOtherKeys|, CTRL-I can be mapped separately
1080 from <Tab>, on the condition that CTRL-I is
1081 mapped before <Tab>, otherwise the mapping applies to
1082 both.
1083
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 *:ju* *:jumps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001085:ju[mps] Print the jump list (not a motion command).
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001086
1087 *:cle* *:clearjumps*
1088:cle[arjumps] Clear the jump list of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089
1090 *jumplist*
1091Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you
1092can go to cursor positions before older jumps, and back again. Thus you can
1093move up and down the list. There is a separate jump list for each window.
1094The maximum number of entries is fixed at 100.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
zeertzjqa7aba6c2023-09-21 14:22:57 +08001096For example, after three jump commands you have this jump list: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097
zeertzjqa7aba6c2023-09-21 14:22:57 +08001098 jump line col file/text
1099 3 1 0 some text
1100 2 70 0 another line
1101 1 1154 23 end.
1102 >
1103<
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001104The "file/text" column shows the file name, or the text at the jump if it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105in the current file (an indent is removed and a long line is truncated to fit
1106in the window).
1107
Christian Brabandta0f659c2022-04-09 13:35:00 +01001108The marker ">" indicates the current position in the jumplist. It may not be
Bram Moolenaar75ab5902022-04-18 15:36:40 +01001109shown when filtering the |:jumps| command using |:filter|
Christian Brabandta0f659c2022-04-09 13:35:00 +01001110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111You are currently in line 1167. If you then use the CTRL-O command, the
zeertzjqa7aba6c2023-09-21 14:22:57 +08001112cursor is put in line 1154. This results in: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113
zeertzjqa7aba6c2023-09-21 14:22:57 +08001114 jump line col file/text
1115 2 1 0 some text
1116 1 70 0 another line
1117 > 0 1154 23 end.
1118 1 1167 0 foo bar
1119<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120The pointer will be set at the last used jump position. The next CTRL-O
1121command will use the entry above it, the next CTRL-I command will use the
1122entry below it. If the pointer is below the last entry, this indicates that
1123you did not use a CTRL-I or CTRL-O before. In this case the CTRL-O command
1124will cause the cursor position to be added to the jump list, so you can get
1125back to the position before the CTRL-O. In this case this is line 1167.
1126
1127With more CTRL-O commands you will go to lines 70 and 1. If you use CTRL-I
1128you can go back to 1154 and 1167 again. Note that the number in the "jump"
1129column indicates the count for the CTRL-O or CTRL-I command that takes you to
1130this position.
1131
1132If you use a jump command, the current line number is inserted at the end of
1133the jump list. If the same line was already in the jump list, it is removed.
1134The result is that when repeating CTRL-O you will get back to old positions
1135only once.
1136
1137When the |:keepjumps| command modifier is used, jumps are not stored in the
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001138jumplist. Jumps are also not stored in other cases, e.g., in a |:global|
Bram Moolenaar9ba7e172013-07-17 22:37:26 +02001139command. You can explicitly add a jump by setting the ' mark with "m'". Note
1140that calling setpos() does not do this.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142After the CTRL-O command that got you into line 1154 you could give another
zeertzjqa7aba6c2023-09-21 14:22:57 +08001143jump command (e.g., "G"). The jump list would then become: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144
zeertzjqa7aba6c2023-09-21 14:22:57 +08001145 jump line col file/text
1146 4 1 0 some text
1147 3 70 0 another line
1148 2 1167 0 foo bar
1149 1 1154 23 end.
1150 >
1151<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152The line numbers will be adjusted for deleted and inserted lines. This fails
1153if you stop editing a file without writing, like with ":n!".
1154
1155When you split a window, the jumplist will be copied to the new window.
1156
1157If you have included the ' item in the 'viminfo' option the jumplist will be
1158stored in the viminfo file and restored when starting Vim.
1159
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001160 *jumplist-stack*
1161When 'jumpoptions' option includes "stack", the jumplist behaves like the tag
1162stack. When jumping to a new location from the middle of the jumplist, the
1163locations after the current position will be discarded. With this option set
1164you can move through a tree of jump locations. When going back up a branch and
1165then down another branch, CTRL-O still takes you further up the tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001167Given a jumplist like the following in which CTRL-O has been used to move back
1168three times to location X: >
1169
1170 jump line col file/text
1171 2 1260 8 mark.c <-- location X-2
1172 1 685 0 eval.c <-- location X-1
1173 > 0 462 36 eval.c <-- location X
1174 1 479 39 eval.c
1175 2 213 2 mark.c
1176 3 181 0 mark.c
1177<
1178jumping to (new) location Y results in the locations after the current
1179locations being removed: >
1180
1181 jump line col file/text
1182 3 1260 8 mark.c <-- location X-2
1183 2 685 0 eval.c <-- location X-1
1184 1 462 36 eval.c <-- location X
1185 >
1186<
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001187Then, when yet another location Z is jumped to, the new location Y appears
1188directly after location X in the jumplist and location X remains in the same
1189position relative to the locations (X-1, X-2, etc., ...) that had been before
1190it prior to the original jump from X to Y: >
1191
1192 jump line col file/text
1193 4 1260 8 mark.c <-- location X-2
1194 3 685 0 eval.c <-- location X-1
1195 2 462 36 eval.c <-- location X
zeertzjqa7aba6c2023-09-21 14:22:57 +08001196 1 100 0 buffer.c <-- location Y
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001197 >
1198<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199CHANGE LIST JUMPS *changelist* *change-list-jumps* *E664*
1200
1201When making a change the cursor position is remembered. One position is
1202remembered for every change that can be undone, unless it is close to a
1203previous change. Two commands can be used to jump to positions of changes,
1204also those that have been undone:
1205
1206 *g;* *E662*
1207g; Go to [count] older position in change list.
1208 If [count] is larger than the number of older change
1209 positions go to the oldest change.
1210 If there is no older change an error message is given.
1211 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212
1213 *g,* *E663*
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +01001214g, Go to [count] newer position in change list.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001215 Just like |g;| but in the opposite direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217
1218When using a count you jump as far back or forward as possible. Thus you can
1219use "999g;" to go to the first change for which the position is still
1220remembered. The number of entries in the change list is fixed and is the same
1221as for the |jumplist|.
1222
1223When two undo-able changes are in the same line and at a column position less
1224than 'textwidth' apart only the last one is remembered. This avoids that a
1225sequence of small changes in a line, for example "xxxxx", adds many positions
1226to the change list. When 'textwidth' is zero 'wrapmargin' is used. When that
1227also isn't set a fixed number of 79 is used. Detail: For the computations
1228bytes are used, not characters, to avoid a speed penalty (this only matters
Bram Moolenaar207f0092020-08-30 17:20:20 +02001229for multibyte encodings).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
1231Note that when text has been inserted or deleted the cursor position might be
1232a bit different from the position of the change. Especially when lines have
1233been deleted.
1234
Bram Moolenaardad44732021-03-31 20:07:33 +02001235When the `:keepjumps` command modifier is used the position of a change is not
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236remembered.
1237
1238 *:changes*
1239:changes Print the change list. A ">" character indicates the
1240 current position. Just after a change it is below the
Bram Moolenaara9604e62018-07-21 05:56:22 +02001241 newest entry, indicating that `g;` takes you to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 newest entry position. The first column indicates the
1243 count needed to take you to this position. Example:
1244
1245 change line col text ~
1246 3 9 8 bla bla bla
1247 2 11 57 foo is a bar
1248 1 14 54 the latest changed line
1249 >
1250
Bram Moolenaara9604e62018-07-21 05:56:22 +02001251 The `3g;` command takes you to line 9. Then the
1252 output of `:changes` is:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254 change line col text ~
1255 > 0 9 8 bla bla bla
1256 1 11 57 foo is a bar
1257 2 14 54 the latest changed line
1258
1259 Now you can use "g," to go to line 11 and "2g," to go
1260 to line 14.
1261
1262==============================================================================
12639. Various motions *various-motions*
1264
1265 *%*
1266% Find the next item in this line after or under the
1267 cursor and jump to its match. |inclusive| motion.
1268 Items can be:
1269 ([{}]) parenthesis or (curly/square) brackets
1270 (this can be changed with the
1271 'matchpairs' option)
1272 /* */ start or end of C-style comment
1273 #if, #ifdef, #else, #elif, #endif
1274 C preprocessor conditionals (when the
1275 cursor is on the # or no ([{
Bram Moolenaardad44732021-03-31 20:07:33 +02001276 is following)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 For other items the matchit plugin can be used, see
Bram Moolenaar446cb832008-06-24 21:56:24 +00001278 |matchit-install|. This plugin also helps to skip
1279 matches in comments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280
1281 When 'cpoptions' contains "M" |cpo-M| backslashes
1282 before parens and braces are ignored. Without "M" the
1283 number of backslashes matters: an even number doesn't
1284 match with an odd number. Thus in "( \) )" and "\( (
1285 \)" the first and last parenthesis match.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001286
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 When the '%' character is not present in 'cpoptions'
1288 |cpo-%|, parens and braces inside double quotes are
1289 ignored, unless the number of parens/braces in a line
1290 is uneven and this line and the previous one does not
1291 end in a backslash. '(', '{', '[', ']', '}' and ')'
1292 are also ignored (parens and braces inside single
1293 quotes). Note that this works fine for C, but not for
1294 Perl, where single quotes are used for strings.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001295
1296 Nothing special is done for matches in comments. You
1297 can either use the matchit plugin |matchit-install| or
1298 put quotes around matches.
1299
1300 No count is allowed, {count}% jumps to a line {count}
1301 percentage down the file |N%|. Using '%' on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 #if/#else/#endif makes the movement linewise.
1303
1304 *[(*
Bram Moolenaardad44732021-03-31 20:07:33 +02001305[( Go to [count] previous unmatched '('.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001306 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 *[{*
Bram Moolenaardad44732021-03-31 20:07:33 +02001308[{ Go to [count] previous unmatched '{'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001309 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 *])*
Bram Moolenaardad44732021-03-31 20:07:33 +02001311]) Go to [count] next unmatched ')'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001312 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 *]}*
Bram Moolenaardad44732021-03-31 20:07:33 +02001314]} Go to [count] next unmatched '}'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001315 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317The above four commands can be used to go to the start or end of the current
1318code block. It is like doing "%" on the '(', ')', '{' or '}' at the other
1319end of the code block, but you can do this from anywhere in the code block.
1320Very useful for C programs. Example: When standing on "case x:", "[{" will
1321bring you back to the switch statement.
1322
1323 *]m*
1324]m Go to [count] next start of a method (for Java or
1325 similar structured language). When not before the
1326 start of a method, jump to the start or end of the
Christian Brabandt65672ae2023-12-27 18:53:35 +01001327 class. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 *]M*
1329]M Go to [count] next end of a method (for Java or
1330 similar structured language). When not before the end
1331 of a method, jump to the start or end of the class.
Christian Brabandt65672ae2023-12-27 18:53:35 +01001332 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 *[m*
1334[m Go to [count] previous start of a method (for Java or
1335 similar structured language). When not after the
1336 start of a method, jump to the start or end of the
1337 class. When no '{' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001338 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339 *[M*
1340[M Go to [count] previous end of a method (for Java or
1341 similar structured language). When not after the
1342 end of a method, jump to the start or end of the
1343 class. When no '}' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001344 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345
Bram Moolenaardad44732021-03-31 20:07:33 +02001346The above four commands assume that the file contains a class with methods.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347The class definition is surrounded in '{' and '}'. Each method in the class
1348is also surrounded with '{' and '}'. This applies to the Java language. The
1349file looks like this: >
1350
1351 // comment
1352 class foo {
1353 int method_one() {
1354 body_one();
1355 }
1356 int method_two() {
1357 body_two();
1358 }
1359 }
Bram Moolenaardad44732021-03-31 20:07:33 +02001360
1361[To try this out copy the text and put it in a new buffer, the help text above
1362confuses the jump commands]
1363
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364Starting with the cursor on "body_two()", using "[m" will jump to the '{' at
1365the start of "method_two()" (obviously this is much more useful when the
1366method is long!). Using "2[m" will jump to the start of "method_one()".
1367Using "3[m" will jump to the start of the class.
1368
1369 *[#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001370[# Go to [count] previous unmatched "#if" or "#else".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001371 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372
1373 *]#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001374]# Go to [count] next unmatched "#else" or "#endif".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001375 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376
1377These two commands work in C programs that contain #if/#else/#endif
1378constructs. It brings you to the start or end of the #if/#else/#endif where
1379the current line is included. You can then use "%" to go to the matching line.
1380
1381 *[star* *[/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001382[* or [/ Go to [count] previous start of a C comment "/*".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001383 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384
1385 *]star* *]/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001386]* or ]/ Go to [count] next end of a C comment "*/".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001387 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388
1389
1390 *H*
1391H To line [count] from top (Home) of window (default:
1392 first line on the window) on the first non-blank
1393 character |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001394 Cursor is adjusted for 'scrolloff' option, unless an
1395 operator is pending, in which case the text may
1396 scroll. E.g. "yH" yanks from the first visible line
1397 until the cursor line (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398
1399 *M*
1400M To Middle line of window, on the first non-blank
1401 character |linewise|. See also 'startofline' option.
1402
1403 *L*
1404L To line [count] from bottom of window (default: Last
1405 line on the window) on the first non-blank character
1406 |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001407 Cursor is adjusted for 'scrolloff' option, unless an
1408 operator is pending, in which case the text may
1409 scroll. E.g. "yL" yanks from the cursor to the last
1410 visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411
1412<LeftMouse> Moves to the position on the screen where the mouse
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001413 click is |exclusive|. See also |<LeftMouse>|. If the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 position is in a status line, that window is made the
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001415 active window and the cursor is not moved.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001417 vim:tw=78:ts=8:noet:ft=help:norl: