blob: 99fd3e24b510a2930e7c26ba7440a7c24b467a14 [file] [log] [blame]
Milly89872f52024-10-05 17:16:18 +02001*motion.txt* For Vim version 9.1. Last change: 2024 Oct 05
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.
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72After 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.
75
76 *linewise* *characterwise*
77The operator either affects whole lines, or the characters between the start
78and end position. Generally, motions that move between lines affect lines
79(are linewise), and motions that move within a line affect characters (are
80characterwise). However, there are some exceptions.
81
82 *exclusive* *inclusive*
Bram Moolenaar78984f52005-08-01 07:19:10 +000083A character motion is either inclusive or exclusive. When inclusive, the
84start and end position of the motion are included in the operation. When
85exclusive, the last character towards the end of the buffer is not included.
86Linewise motions always include the start and end position.
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
Bram Moolenaar78984f52005-08-01 07:19:10 +000088Which motions are linewise, inclusive or exclusive is mentioned with the
89command. There are however, two general exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901. If the motion is exclusive and the end of the motion is in column 1, the
91 end of the motion is moved to the end of the previous line and the motion
92 becomes inclusive. Example: "}" moves to the first line after a paragraph,
93 but "d}" will not include that line.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000094 *exclusive-linewise*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952. If the motion is exclusive, the end of the motion is in column 1 and the
96 start of the motion was at or before the first non-blank in the line, the
97 motion becomes linewise. Example: If a paragraph begins with some blanks
98 and you do "d}" while standing on the first non-blank, all the lines of
99 the paragraph are deleted, including the blanks. If you do a put now, the
100 deleted lines will be inserted below the cursor position.
101
102Note that when the operator is pending (the operator command is typed, but the
103motion isn't yet), a special set of mappings can be used. See |:omap|.
104
105Instead of first giving the operator and then a motion you can use Visual
106mode: mark the start of the text with "v", move the cursor to the end of the
107text that is to be affected and then hit the operator. The text between the
108start and the cursor position is highlighted, so you can see what text will
109be operated upon. This allows much more freedom, but requires more key
110strokes and has limited redo functionality. See the chapter on Visual mode
111|Visual-mode|.
112
113You can use a ":" command for a motion. For example "d:call FindEnd()".
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100114But this can't be repeated with "." if the command is more than one line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115This can be repeated: >
116 d:call search("f")<CR>
117This cannot be repeated: >
118 d:if 1<CR>
119 call search("f")<CR>
120 endif<CR>
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100121Note that when using ":" any motion becomes characterwise exclusive.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
Bram Moolenaarc8c88492018-12-27 23:59:26 +0100123 *forced-motion*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124FORCING A MOTION TO BE LINEWISE, CHARACTERWISE OR BLOCKWISE
125
126When a motion is not of the type you would like to use, you can force another
127type by using "v", "V" or CTRL-V just after the operator.
128Example: >
129 dj
130deletes two lines >
131 dvj
132deletes from the cursor position until the character below the cursor >
133 d<C-V>j
134deletes the character under the cursor and the character below the cursor. >
135
136Be careful with forcing a linewise movement to be used characterwise or
137blockwise, the column may not always be defined.
138
139 *o_v*
140v When used after an operator, before the motion command: Force
141 the operator to work characterwise, also when the motion is
142 linewise. If the motion was linewise, it will become
143 |exclusive|.
144 If the motion already was characterwise, toggle
145 inclusive/exclusive. This can be used to make an exclusive
146 motion inclusive and an inclusive motion exclusive.
147
148 *o_V*
149V When used after an operator, before the motion command: Force
150 the operator to work linewise, also when the motion is
151 characterwise.
152
153 *o_CTRL-V*
154CTRL-V When used after an operator, before the motion command: Force
155 the operator to work blockwise. This works like Visual block
156 mode selection, with the corners defined by the cursor
157 position before and after the motion.
158
159==============================================================================
1602. Left-right motions *left-right-motions*
161
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100162These commands move the cursor to the specified column in the current line.
163They stop at the first column and at the end of the line, except "$", which
164may move to one of the next lines. See 'whichwrap' option to make some of the
165commands move across line boundaries.
166
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167h or *h*
168<Left> or *<Left>*
169CTRL-H or *CTRL-H* *<BS>*
170<BS> [count] characters to the left. |exclusive| motion.
171 Note: If you prefer <BS> to delete a character, use
Milly89872f52024-10-05 17:16:18 +0200172 the mapping: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 :map CTRL-V<BS> X
Milly89872f52024-10-05 17:16:18 +0200174< (to enter "CTRL-V<BS>" type the CTRL-V key, followed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 by the <BS> key)
176 See |:fixdel| if the <BS> key does not do what you
177 want.
178
179l or *l*
180<Right> or *<Right>* *<Space>*
181<Space> [count] characters to the right. |exclusive| motion.
Bram Moolenaarf2571c62015-06-09 19:44:55 +0200182 See the 'whichwrap' option for adjusting the behavior
183 at end of line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 *0*
1860 To the first character of the line. |exclusive|
Bram Moolenaar9964e462007-05-05 17:54:07 +0000187 motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
189 *<Home>* *<kHome>*
190<Home> To the first character of the line. |exclusive|
Bram Moolenaar9964e462007-05-05 17:54:07 +0000191 motion. When moving up or down next, stay in same
192 TEXT column (if possible). Most other commands stay
193 in the same SCREEN column. <Home> works like "1|",
194 which differs from "0" when the line starts with a
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200195 <Tab>.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
197 *^*
198^ To the first non-blank character of the line.
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100199 |exclusive| motion. Any count is ignored.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200
201 *$* *<End>* *<kEnd>*
202$ or <End> To the end of the line. When a count is given also go
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100203 [count - 1] lines downward, or as far is possible.
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200204 |inclusive| motion. If a count of 2 or larger is
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100205 given and the cursor is on the last line, that is an
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200206 error and the cursor doesn't move.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 In Visual mode the cursor goes to just after the last
208 character in the line.
209 When 'virtualedit' is active, "$" may move the cursor
210 back from past the end of the line to the last
211 character in the line.
212
213 *g_*
214g_ To the last non-blank character of the line and
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200215 [count - 1] lines downward |inclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216
217 *g0* *g<Home>*
218g0 or g<Home> When lines wrap ('wrap' on): To the first character of
219 the screen line. |exclusive| motion. Differs from
220 "0" when a line is wider than the screen.
221 When lines don't wrap ('wrap' off): To the leftmost
222 character of the current line that is on the screen.
223 Differs from "0" when the first character of the line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200224 is not on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
226 *g^*
227g^ When lines wrap ('wrap' on): To the first non-blank
228 character of the screen line. |exclusive| motion.
229 Differs from "^" when a line is wider than the screen.
230 When lines don't wrap ('wrap' off): To the leftmost
231 non-blank character of the current line that is on the
232 screen. Differs from "^" when the first non-blank
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200233 character of the line is not on the screen.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234
235 *gm*
236gm Like "g0", but half a screenwidth to the right (or as
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200237 much as possible).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238
Bram Moolenaar1ff14ba2019-11-02 14:09:23 +0100239 *gM*
Bram Moolenaar8b530c12019-10-28 02:13:05 +0100240gM Like "g0", but to halfway the text of the line.
241 With a count: to this percentage of text in the line.
242 Thus "10gM" is near the start of the text and "90gM"
243 is near the end of the text.
244
Christian Brabandtb5f6fe92023-08-19 15:53:16 +0200245 *g$*
246g$ When lines wrap ('wrap' on): To the last character of
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247 the screen line and [count - 1] screen lines downward
248 |inclusive|. Differs from "$" when a line is wider
249 than the screen.
250 When lines don't wrap ('wrap' off): To the rightmost
251 character of the current line that is visible on the
252 screen. Differs from "$" when the last character of
253 the line is not on the screen or when a count is used.
254 Additionally, vertical movements keep the column,
255 instead of going to the end of the line.
Bram Moolenaar9ba7e172013-07-17 22:37:26 +0200256 When 'virtualedit' is enabled moves to the end of the
257 screen line.
zeertzjq654bdbb2023-08-20 18:24:20 +0200258
259 *g<End>* *g<kEnd>*
Christian Brabandtb5f6fe92023-08-19 15:53:16 +0200260g<End> Like |g$| but to the last non-blank character
261 instead of the last character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262
263 *bar*
264| To screen column [count] in the current line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100265 |exclusive| motion. Ceci n'est pas une pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266
267 *f*
268f{char} To [count]'th occurrence of {char} to the right. The
269 cursor is placed on {char} |inclusive|.
270 {char} can be entered as a digraph |digraph-arg|.
271 When 'encoding' is set to Unicode, composing
272 characters may be used, see |utf-8-char-arg|.
273 |:lmap| mappings apply to {char}. The CTRL-^ command
274 in Insert mode can be used to switch this on/off
275 |i_CTRL-^|.
276
277 *F*
278F{char} To the [count]'th occurrence of {char} to the left.
Bram Moolenaar78984f52005-08-01 07:19:10 +0000279 The cursor is placed on {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 {char} can be entered like with the |f| command.
281
282 *t*
283t{char} Till before [count]'th occurrence of {char} to the
284 right. The cursor is placed on the character left of
285 {char} |inclusive|.
286 {char} can be entered like with the |f| command.
287
288 *T*
289T{char} Till after [count]'th occurrence of {char} to the
290 left. The cursor is placed on the character right of
Bram Moolenaar78984f52005-08-01 07:19:10 +0000291 {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292 {char} can be entered like with the |f| command.
293
294 *;*
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200295; Repeat latest f, t, F or T [count] times. See |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296
297 *,*
298, Repeat latest f, t, F or T in opposite direction
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200299 [count] times. See also |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301==============================================================================
3023. Up-down motions *up-down-motions*
303
304k or *k*
305<Up> or *<Up>* *CTRL-P*
306CTRL-P [count] lines upward |linewise|.
307
308j or *j*
309<Down> or *<Down>*
310CTRL-J or *CTRL-J*
311<NL> or *<NL>* *CTRL-N*
312CTRL-N [count] lines downward |linewise|.
313
314gk or *gk* *g<Up>*
315g<Up> [count] display lines upward. |exclusive| motion.
316 Differs from 'k' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200317 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318
319gj or *gj* *g<Down>*
320g<Down> [count] display lines downward. |exclusive| motion.
321 Differs from 'j' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200322 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323
324 *-*
325- <minus> [count] lines upward, on the first non-blank
326 character |linewise|.
327
328+ or *+*
329CTRL-M or *CTRL-M* *<CR>*
330<CR> [count] lines downward, on the first non-blank
331 character |linewise|.
332
333 *_*
334_ <underscore> [count] - 1 lines downward, on the first non-blank
335 character |linewise|.
336
337 *G*
338G Goto line [count], default last line, on the first
339 non-blank character |linewise|. If 'startofline' not
340 set, keep the same column.
Bram Moolenaar26967612019-03-17 17:13:16 +0100341 G is one of the |jump-motions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342
343 *<C-End>*
344<C-End> Goto line [count], default last line, on the last
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200345 character |inclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346
347<C-Home> or *gg* *<C-Home>*
348gg Goto line [count], default first line, on the first
349 non-blank character |linewise|. If 'startofline' not
350 set, keep the same column.
351
Bram Moolenaar9b451252012-08-15 17:43:31 +0200352 *:[range]*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100353:[range] Set the cursor on the last line number in [range].
Mohamed Akramc25a7082024-07-12 20:17:55 +0200354 In Ex mode, print the lines in [range].
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100355 [range] can also be just one line number, e.g., ":1"
356 or ":'m".
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200357 In contrast with |G| this command does not modify the
358 |jumplist|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359 *N%*
360{count}% Go to {count} percentage in the file, on the first
361 non-blank in the line |linewise|. To compute the new
362 line number this formula is used:
363 ({count} * number-of-lines + 99) / 100
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200364 See also 'startofline' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
366:[range]go[to] [count] *:go* *:goto* *go*
Christian Brabandtf8702ae2024-08-28 20:39:24 +0200367[count]go Go to [count] byte in the buffer. |exclusive| motion.
368 Default [count] is one, start of the file. When
369 giving [range], the last number in it used as the byte
370 count. End-of-line characters are counted depending
371 on the current 'fileformat' setting.
Bram Moolenaar251e1912011-06-19 05:09:16 +0200372 Also see the |line2byte()| function, and the 'o'
373 option in 'statusline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 {not available when compiled without the
375 |+byte_offset| feature}
376
377These commands move to the specified line. They stop when reaching the first
378or the last line. The first two commands put the cursor in the same column
379(if possible) as it was after the last command that changed the column,
380except after the "$" command, then the cursor will be put on the last
381character of the line.
382
Bram Moolenaar7c626922005-02-07 22:01:03 +0000383If "k", "-" or CTRL-P is used with a [count] and there are less than [count]
384lines above the cursor and the 'cpo' option includes the "-" flag it is an
385error. |cpo--|.
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387==============================================================================
3884. Word motions *word-motions*
389
390<S-Right> or *<S-Right>* *w*
391w [count] words forward. |exclusive| motion.
392
393<C-Right> or *<C-Right>* *W*
394W [count] WORDS forward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000395 If <C-Right> does not work, check out
396 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397
398 *e*
399e Forward to the end of word [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000400 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401
402 *E*
403E Forward to the end of WORD [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000404 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405
406<S-Left> or *<S-Left>* *b*
407b [count] words backward. |exclusive| motion.
408
409<C-Left> or *<C-Left>* *B*
410B [count] WORDS backward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000411 If <C-Left> does not work, check out
412 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
414 *ge*
415ge Backward to the end of word [count] |inclusive|.
416
417 *gE*
418gE Backward to the end of WORD [count] |inclusive|.
419
420These commands move over words or WORDS.
421 *word*
422A word consists of a sequence of letters, digits and underscores, or a
423sequence of other non-blank characters, separated with white space (spaces,
Bram Moolenaar4770d092006-01-12 23:22:24 +0000424tabs, <EOL>). This can be changed with the 'iskeyword' option. An empty line
425is also considered to be a word.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 *WORD*
427A WORD consists of a sequence of non-blank characters, separated with white
Bram Moolenaar4770d092006-01-12 23:22:24 +0000428space. An empty line is also considered to be a WORD.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429
430A sequence of folded lines is counted for one word of a single character.
431"w" and "W", "e" and "E" move to the start/end of the first word or WORD after
432a range of folded lines. "b" and "B" move to the start of the first word or
433WORD before the fold.
434
435Special case: "cw" and "cW" are treated like "ce" and "cE" if the cursor is
436on a non-blank. This is because "cw" is interpreted as change-word, and a
Christian Brabandt22105fd2024-07-15 20:51:11 +0200437word does not include the following white space (see also |cw|).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438
439Another special case: When using the "w" motion in combination with an
440operator and the last word moved over is at the end of a line, the end of
441that word becomes the end of the operated text, not the first word in the
442next line.
443
444The original Vi implementation of "e" is buggy. For example, the "e" command
445will stop on the first character of a line if the previous line was empty.
446But when you use "2e" this does not happen. In Vim "ee" and "2e" are the
447same, which is more logical. However, this causes a small incompatibility
448between Vi and Vim.
449
450==============================================================================
4515. Text object motions *object-motions*
452
453 *(*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100454( [count] |sentence|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455
456 *)*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100457) [count] |sentence|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458
459 *{*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100460{ [count] |paragraph|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461
462 *}*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100463} [count] |paragraph|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464
465 *]]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100466]] [count] |section|s forward or to the next '{' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000467 first column. When used after an operator, then also
468 stops below a '}' in the first column. |exclusive|
469 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
471 *][*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100472][ [count] |section|s forward or to the next '}' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000473 first column. |exclusive|
474 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475
476 *[[*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100477[[ [count] |section|s backward or to the previous '{' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000478 the first column. |exclusive|
479 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480
481 *[]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100482[] [count] |section|s backward or to the previous '}' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000483 the first column. |exclusive|
484 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485
486These commands move over three kinds of text objects.
487
488 *sentence*
489A sentence is defined as ending at a '.', '!' or '?' followed by either the
490end of a line, or by a space or tab. Any number of closing ')', ']', '"'
491and ''' characters may appear after the '.', '!' or '?' before the spaces,
492tabs or end of line. A paragraph and section boundary is also a sentence
493boundary.
494If the 'J' flag is present in 'cpoptions', at least two spaces have to
495follow the punctuation mark; <Tab>s are not recognized as white space.
496The definition of a sentence cannot be changed.
497
498 *paragraph*
499A paragraph begins after each empty line, and also at each of a set of
500paragraph macros, specified by the pairs of characters in the 'paragraphs'
Bram Moolenaar446cb832008-06-24 21:56:24 +0000501option. The default is "IPLPPPQPP TPHPLIPpLpItpplpipbp", which corresponds to
502the macros ".IP", ".LP", etc. (These are nroff macros, so the dot must be in
503the first column). A section boundary is also a paragraph boundary.
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000504Note that a blank line (only containing white space) is NOT a paragraph
505boundary.
506Also note that this does not include a '{' or '}' in the first column. When
507the '{' flag is in 'cpoptions' then '{' in the first column is used as a
508paragraph boundary |posix|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
510 *section*
511A section begins after a form-feed (<C-L>) in the first column and at each of
512a set of section macros, specified by the pairs of characters in the
513'sections' option. The default is "SHNHH HUnhsh", which defines a section to
514start at the nroff macros ".SH", ".NH", ".H", ".HU", ".nh" and ".sh".
515
Bram Moolenaar207f0092020-08-30 17:20:20 +0200516The "]]" and "[[" commands stop at the '{' in the first column. This is
517useful to find the start of a function in a C program. To search for a '}' in
518the first column, the end of a C function, use "][" (forward) or "[]"
519(backward). Note that the first character of the command determines the
520search direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521
522If your '{' or '}' are not in the first column, and you would like to use "[["
523and "]]" anyway, try these mappings: >
524 :map [[ ?{<CR>w99[{
525 :map ][ /}<CR>b99]}
526 :map ]] j0[[%/{<CR>
527 :map [] k$][%?}<CR>
528[type these literally, see |<>|]
529
530==============================================================================
5316. Text object selection *object-select* *text-objects*
532 *v_a* *v_i*
533
534This is a series of commands that can only be used while in Visual mode or
535after an operator. The commands that start with "a" select "a"n object
536including white space, the commands starting with "i" select an "inner" object
537without white space, or just the white space. Thus the "inner" commands
538always select less text than the "a" commands.
539
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200540Also see `gn` and `gN`, operating on the last search pattern.
541
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 *v_aw* *aw*
543aw "a word", select [count] words (see |word|).
544 Leading or trailing white space is included, but not
545 counted.
546 When used in Visual linewise mode "aw" switches to
547 Visual characterwise mode.
548
549 *v_iw* *iw*
550iw "inner word", select [count] words (see |word|).
551 White space between words is counted too.
552 When used in Visual linewise mode "iw" switches to
553 Visual characterwise mode.
554
555 *v_aW* *aW*
556aW "a WORD", select [count] WORDs (see |WORD|).
557 Leading or trailing white space is included, but not
558 counted.
559 When used in Visual linewise mode "aW" switches to
560 Visual characterwise mode.
561
562 *v_iW* *iW*
563iW "inner WORD", select [count] WORDs (see |WORD|).
564 White space between words is counted too.
565 When used in Visual linewise mode "iW" switches to
566 Visual characterwise mode.
567
568 *v_as* *as*
569as "a sentence", select [count] sentences (see
570 |sentence|).
571 When used in Visual mode it is made characterwise.
572
573 *v_is* *is*
574is "inner sentence", select [count] sentences (see
575 |sentence|).
576 When used in Visual mode it is made characterwise.
577
578 *v_ap* *ap*
579ap "a paragraph", select [count] paragraphs (see
580 |paragraph|).
581 Exception: a blank line (only containing white space)
582 is also a paragraph boundary.
583 When used in Visual mode it is made linewise.
584
585 *v_ip* *ip*
586ip "inner paragraph", select [count] paragraphs (see
587 |paragraph|).
588 Exception: a blank line (only containing white space)
589 is also a paragraph boundary.
590 When used in Visual mode it is made linewise.
591
592a] *v_a]* *v_a[* *a]* *a[*
593a[ "a [] block", select [count] '[' ']' blocks. This
594 goes backwards to the [count] unclosed '[', and finds
595 the matching ']'. The enclosed text is selected,
Christian Brabandt02902b52023-09-29 00:09:28 +0200596 including the '[' and ']'. The |cpo-M| option flag
597 is used to handle escaped brackets.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 When used in Visual mode it is made characterwise.
599
600i] *v_i]* *v_i[* *i]* *i[*
601i[ "inner [] block", select [count] '[' ']' blocks. This
602 goes backwards to the [count] unclosed '[', and finds
603 the matching ']'. The enclosed text is selected,
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100604 excluding the '[' and ']'. It's an error to select an
605 empty inner block like "[]". The |cpo-M| option flag
Christian Brabandt02902b52023-09-29 00:09:28 +0200606 is used to handle escaped brackets.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607 When used in Visual mode it is made characterwise.
608
609a) *v_a)* *a)* *a(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200610a( *vab* *v_ab* *v_a(* *ab*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611ab "a block", select [count] blocks, from "[count] [(" to
612 the matching ')', including the '(' and ')' (see
613 |[(|). Does not include white space outside of the
Christian Brabandt02902b52023-09-29 00:09:28 +0200614 parenthesis. The |cpo-M| option flag is used to
615 handle escaped parenthesis.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 When used in Visual mode it is made characterwise.
617
618i) *v_i)* *i)* *i(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200619i( *vib* *v_ib* *v_i(* *ib*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620ib "inner block", select [count] blocks, from "[count] [("
621 to the matching ')', excluding the '(' and ')' (see
Bram Moolenaare1f3fd12022-08-15 18:51:32 +0100622 |[(|). If the cursor is not inside a () block, then
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100623 find the next "(". It's an error to select an empty
624 inner block like "()". The |cpo-M| option flag
Christian Brabandt02902b52023-09-29 00:09:28 +0200625 is used to handle escaped parenthesis.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626 When used in Visual mode it is made characterwise.
627
628a> *v_a>* *v_a<* *a>* *a<*
629a< "a <> block", select [count] <> blocks, from the
630 [count]'th unmatched '<' backwards to the matching
Christian Brabandt02902b52023-09-29 00:09:28 +0200631 '>', including the '<' and '>'. The |cpo-M| option flag
632 is used to handle escaped '<' and '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 When used in Visual mode it is made characterwise.
634
635i> *v_i>* *v_i<* *i>* *i<*
636i< "inner <> block", select [count] <> blocks, from
637 the [count]'th unmatched '<' backwards to the matching
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100638 '>', excluding the '<' and '>'. It's an error to
639 select an empty inner block like "<>". The |cpo-M|
640 option flag is used to handle escaped '<' and '>'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 When used in Visual mode it is made characterwise.
642
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000643 *v_at* *at*
644at "a tag block", select [count] tag blocks, from the
645 [count]'th unmatched "<aaa>" backwards to the matching
646 "</aaa>", including the "<aaa>" and "</aaa>".
647 See |tag-blocks| about the details.
648 When used in Visual mode it is made characterwise.
Bram Moolenaar88774872022-08-16 20:24:29 +0100649 Only available when compiled with the |+eval| feature.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000650
651 *v_it* *it*
652it "inner tag block", select [count] tag blocks, from the
653 [count]'th unmatched "<aaa>" backwards to the matching
654 "</aaa>", excluding the "<aaa>" and "</aaa>".
655 See |tag-blocks| about the details.
656 When used in Visual mode it is made characterwise.
657
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658a} *v_a}* *a}* *a{*
659a{ *v_aB* *v_a{* *aB*
660aB "a Block", select [count] Blocks, from "[count] [{" to
661 the matching '}', including the '{' and '}' (see
Christian Brabandt02902b52023-09-29 00:09:28 +0200662 |[{|). The |cpo-M| option flag is used to handle
663 escaped braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 When used in Visual mode it is made characterwise.
665
666i} *v_i}* *i}* *i{*
667i{ *v_iB* *v_i{* *iB*
668iB "inner Block", select [count] Blocks, from "[count] [{"
669 to the matching '}', excluding the '{' and '}' (see
Christian Brabandtad4d7f42024-01-04 21:43:36 +0100670 |[{|). It's an error to select an empty inner block
671 like "{}". The |cpo-M| option flag is used to handle
Christian Brabandt02902b52023-09-29 00:09:28 +0200672 escaped braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 When used in Visual mode it is made characterwise.
674
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000675a" *v_aquote* *aquote*
676a' *v_a'* *a'*
677a` *v_a`* *a`*
678 "a quoted string". Selects the text from the previous
Bram Moolenaar5a305422006-04-28 22:38:25 +0000679 quote until the next quote. The 'quoteescape' option
680 is used to skip escaped quotes.
681 Only works within one line.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000682 When the cursor starts on a quote, Vim will figure out
683 which quote pairs form a string by searching from the
684 start of the line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100685 Any trailing white space is included, unless there is
686 none, then leading white space is included.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000687 When used in Visual mode it is made characterwise.
688 Repeating this object in Visual mode another string is
689 included. A count is currently not used.
690
691i" *v_iquote* *iquote*
692i' *v_i'* *i'*
693i` *v_i`* *i`*
694 Like a", a' and a`, but exclude the quotes and
695 repeating won't extend the Visual selection.
Bram Moolenaarab194812005-09-14 21:40:12 +0000696 Special case: With a count of 2 the quotes are
697 included, but no extra white space as with a"/a'/a`.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000698
Christian Brabandt346ac142023-09-18 20:11:37 +0200699 *o_object-select*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700When used after an operator:
701For non-block objects:
702 For the "a" commands: The operator applies to the object and the white
703 space after the object. If there is no white space after the object
704 or when the cursor was in the white space before the object, the white
705 space before the object is included.
706 For the "inner" commands: If the cursor was on the object, the
707 operator applies to the object. If the cursor was on white space, the
708 operator applies to the white space.
709For a block object:
710 The operator applies to the block where the cursor is in, or the block
711 on which the cursor is on one of the braces. For the "inner" commands
712 the surrounding braces are excluded. For the "a" commands, the braces
713 are included.
714
Christian Brabandt346ac142023-09-18 20:11:37 +0200715 *v_object-select*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716When used in Visual mode:
717When start and end of the Visual area are the same (just after typing "v"):
718 One object is selected, the same as for using an operator.
719When start and end of the Visual area are not the same:
720 For non-block objects the area is extended by one object or the white
721 space up to the next object, or both for the "a" objects. The
722 direction in which this happens depends on which side of the Visual
723 area the cursor is. For the block objects the block is extended one
724 level outwards.
725
726For illustration, here is a list of delete commands, grouped from small to big
727objects. Note that for a single character and a whole line the existing vi
728movement commands are used.
729 "dl" delete character (alias: "x") |dl|
730 "diw" delete inner word *diw*
731 "daw" delete a word *daw*
732 "diW" delete inner WORD (see |WORD|) *diW*
733 "daW" delete a WORD (see |WORD|) *daW*
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200734 "dgn" delete the next search pattern match *dgn*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 "dd" delete one line |dd|
736 "dis" delete inner sentence *dis*
737 "das" delete a sentence *das*
738 "dib" delete inner '(' ')' block *dib*
739 "dab" delete a '(' ')' block *dab*
740 "dip" delete inner paragraph *dip*
741 "dap" delete a paragraph *dap*
742 "diB" delete inner '{' '}' block *diB*
743 "daB" delete a '{' '}' block *daB*
744
745Note the difference between using a movement command and an object. The
746movement command operates from here (cursor position) to where the movement
747takes us. When using an object the whole object is operated upon, no matter
748where on the object the cursor is. For example, compare "dw" and "daw": "dw"
749deletes from the cursor position to the start of the next word, "daw" deletes
750the word under the cursor and the space after or before it.
751
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000752
753Tag blocks *tag-blocks*
754
755For the "it" and "at" text objects an attempt is done to select blocks between
756matching tags for HTML and XML. But since these are not completely compatible
757there are a few restrictions.
758
759The normal method is to select a <tag> until the matching </tag>. For "at"
760the tags are included, for "it" they are excluded. But when "it" is repeated
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000761the tags will be included (otherwise nothing would change). Also, "it" used
762on a tag block with no contents will select the leading tag.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000763
764"<aaa/>" items are skipped. Case is ignored, also for XML where case does
765matter.
766
767In HTML it is possible to have a tag like <br> or <meta ...> without a
768matching end tag. These are ignored.
769
770The text objects are tolerant about mistakes. Stray end tags are ignored.
771
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772==============================================================================
7737. Marks *mark-motions* *E20* *E78*
774
775Jumping to a mark can be done in two ways:
7761. With ` (backtick): The cursor is positioned at the specified location
777 and the motion is |exclusive|.
7782. With ' (single quote): The cursor is positioned on the first non-blank
779 character in the line of the specified location and
780 the motion is linewise.
781
782 *m* *mark* *Mark*
783m{a-zA-Z} Set mark {a-zA-Z} at cursor position (does not move
784 the cursor, this is not a motion command).
785
786 *m'* *m`*
787m' or m` Set the previous context mark. This can be jumped to
788 with the "''" or "``" command (does not move the
789 cursor, this is not a motion command).
790
791 *m[* *m]*
792m[ or m] Set the |'[| or |']| mark. Useful when an operator is
793 to be simulated by multiple commands. (does not move
794 the cursor, this is not a motion command).
795
Bram Moolenaar30b65812012-07-12 22:01:11 +0200796 *m<* *m>*
797m< or m> Set the |'<| or |'>| mark. Useful to change what the
798 `gv` command selects. (does not move the cursor, this
799 is not a motion command).
800 Note that the Visual mode cannot be set, only the
801 start and end position.
802
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 *:ma* *:mark* *E191*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000804:[range]ma[rk] {a-zA-Z'}
805 Set mark {a-zA-Z'} at last line number in [range],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 column 0. Default is cursor line.
807
808 *:k*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000809:[range]k{a-zA-Z'} Same as :mark, but the space before the mark name can
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 be omitted.
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000811 This command is not supported in |Vim9| script,
812 because it is too easily confused with a variable
813 name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814
815 *'* *'a* *`* *`a*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000816'{a-z} `{a-z} Jump to the mark {a-z} in the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817
818 *'A* *'0* *`A* *`0*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000819'{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 +0200820 a motion command when in another file).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821
822 *g'* *g'a* *g`* *g`a*
823g'{mark} g`{mark}
824 Jump to the {mark}, but don't change the jumplist when
825 jumping within the current buffer. Example: >
826 g`"
827< jumps to the last known position in a file. See
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000828 $VIMRUNTIME/vimrc_example.vim.
829 Also see |:keepjumps|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830
831 *:marks*
832:marks List all the current marks (not a motion command).
833 The |'(|, |')|, |'{| and |'}| marks are not listed.
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000834 The first column has number zero.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200835
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 *E283*
837:marks {arg} List the marks that are mentioned in {arg} (not a
838 motion command). For example: >
839 :marks aB
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200840< to list marks 'a' and 'B'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000842 *:delm* *:delmarks*
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000843:delm[arks] {marks} Delete the specified marks. Marks that can be deleted
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000844 include A-Z and 0-9. You cannot delete the ' mark.
845 They can be specified by giving the list of mark
846 names, or with a range, separated with a dash. Spaces
847 are ignored. Examples: >
848 :delmarks a deletes mark a
849 :delmarks a b 1 deletes marks a, b and 1
850 :delmarks Aa deletes marks A and a
851 :delmarks p-z deletes marks in the range p to z
852 :delmarks ^.[] deletes marks ^ . [ ]
853 :delmarks \" deletes mark "
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000854
855:delm[arks]! Delete all marks for the current buffer, but not marks
856 A-Z or 0-9.
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858A mark is not visible in any way. It is just a position in the file that is
859remembered. Do not confuse marks with named registers, they are totally
860unrelated.
861
862'a - 'z lowercase marks, valid within one file
863'A - 'Z uppercase marks, also called file marks, valid between files
864'0 - '9 numbered marks, set from .viminfo file
865
866Lowercase marks 'a to 'z are remembered as long as the file remains in the
867buffer list. If you remove the file from the buffer list, all its marks are
868lost. If you delete a line that contains a mark, that mark is erased.
869
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870Lowercase marks can be used in combination with operators. For example: "d't"
871deletes the lines from the cursor position to mark 't'. Hint: Use mark 't' for
872Top, 'b' for Bottom, etc.. Lowercase marks are restored when using undo and
873redo.
874
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200875Uppercase marks 'A to 'Z include the file name. You can use them to jump from
876file to file. You can only use an uppercase mark with an operator if the mark
877is in the current file. The line number of the mark remains correct, even if
878you insert/delete lines or edit another file for a moment. When the 'viminfo'
879option is not empty, uppercase marks are kept in the .viminfo file. See
880|viminfo-file-marks|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
882Numbered marks '0 to '9 are quite different. They can not be set directly.
883They are only present when using a viminfo file |viminfo-file|. Basically '0
884is the location of the cursor when you last exited Vim, '1 the last but one
885time, etc. Use the "r" flag in 'viminfo' to specify files for which no
886Numbered mark should be stored. See |viminfo-file-marks|.
887
888
889 *'[* *`[*
890'[ `[ To the first character of the previously changed
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200891 or yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892
893 *']* *`]*
894'] `] To the last character of the previously changed or
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200895 yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
897After executing an operator the Cursor is put at the beginning of the text
898that was operated upon. After a put command ("p" or "P") the cursor is
899sometimes placed at the first inserted line and sometimes on the last inserted
900character. The four commands above put the cursor at either end. Example:
901After yanking 10 lines you want to go to the last one of them: "10Y']". After
902inserting several lines with the "p" command you want to jump to the lowest
903inserted line: "p']". This also works for text that has been inserted.
904
905Note: After deleting text, the start and end positions are the same, except
906when using blockwise Visual mode. These commands do not work when no change
907was made yet in the current file.
908
909 *'<* *`<*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000910'< `< To the first line or character of the last selected
911 Visual area in the current buffer. For block mode it
912 may also be the last character in the first line (to
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200913 be able to define the block).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914
915 *'>* *`>*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000916'> `> To the last line or character of the last selected
917 Visual area in the current buffer. For block mode it
918 may also be the first character of the last line (to
919 be able to define the block). Note that 'selection'
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000920 applies, the position may be just after the Visual
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200921 area.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
923 *''* *``*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000924'' `` To the position before the latest jump, or where the
925 last "m'" or "m`" command was given. Not set when the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 |:keepjumps| command modifier was used.
927 Also see |restore-position|.
928
929 *'quote* *`quote*
930'" `" To the cursor position when last exiting the current
931 buffer. Defaults to the first character of the first
932 line. See |last-position-jump| for how to use this
933 for each opened file.
934 Only one position is remembered per buffer, not one
935 for each window. As long as the buffer is visible in
936 a window the position won't be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937
938 *'^* *`^*
939'^ `^ To the position where the cursor was the last time
Bram Moolenaar81695252004-12-29 20:58:21 +0000940 when Insert mode was stopped. This is used by the
941 |gi| command. Not set when the |:keepjumps| command
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200942 modifier was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943
944 *'.* *`.*
945'. `. To the position where the last change was made. The
946 position is at or near where the change started.
947 Sometimes a command is executed as several changes,
948 then the position can be near the end of what the
949 command changed. For example when inserting a word,
950 the position will be on the last character.
Bram Moolenaar51628222016-12-01 23:03:28 +0100951 To jump to older changes use |g;|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952
953 *'(* *`(*
954'( `( To the start of the current sentence, like the |(|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200955 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
957 *')* *`)*
958') `) To the end of the current sentence, like the |)|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200959 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961 *'{* *`{*
962'{ `{ To the start of the current paragraph, like the |{|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200963 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
965 *'}* *`}*
966'} `} To the end of the current paragraph, like the |}|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200967 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968
969These commands are not marks themselves, but jump to a mark:
970
971 *]'*
972]' [count] times to next line with a lowercase mark below
973 the cursor, on the first non-blank character in the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200974 line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975
976 *]`*
Bram Moolenaardad44732021-03-31 20:07:33 +0200977]` [count] times to lowercase mark after the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 *['*
980[' [count] times to previous line with a lowercase mark
981 before the cursor, on the first non-blank character in
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200982 the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983
984 *[`*
985[` [count] times to lowercase mark before the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986
987
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200988:loc[kmarks] {command} *:loc* *:lock* *:lockmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 Execute {command} without adjusting marks. This is
990 useful when changing text in a way that the line count
991 will be the same when the change has completed.
992 WARNING: When the line count does change, marks below
993 the change will keep their line number, thus move to
994 another text line.
995 These items will not be adjusted for deleted/inserted
996 lines:
997 - lower case letter marks 'a - 'z
998 - upper case letter marks 'A - 'Z
999 - numbered marks '0 - '9
1000 - last insert position '^
1001 - last change position '.
Bram Moolenaar09c6f262019-11-17 15:55:14 +01001002 - last affected text area '[ and ']
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 - the Visual area '< and '>
1004 - line numbers in placed signs
1005 - line numbers in quickfix positions
1006 - positions in the |jumplist|
1007 - positions in the |tagstack|
1008 These items will still be adjusted:
1009 - previous context mark ''
1010 - the cursor position
1011 - the view of a window on a buffer
1012 - folds
1013 - diffs
1014
Bram Moolenaar61da1bf2019-06-06 12:14:49 +02001015:kee[pmarks] {command} *:kee* *:keep* *:keepmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 Currently only has effect for the filter command
1017 |:range!|:
1018 - When the number of lines after filtering is equal to
1019 or larger than before, all marks are kept at the
1020 same line number.
1021 - When the number of lines decreases, the marks in the
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001022 lines that disappeared are deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 In any case the marks below the filtered text have
1024 their line numbers adjusted, thus stick to the text,
1025 as usual.
1026 When the 'R' flag is missing from 'cpoptions' this has
1027 the same effect as using ":keepmarks".
1028
1029 *:keepj* *:keepjumps*
1030:keepj[umps] {command}
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001031 Moving around in {command} does not change the |''|,
1032 |'.| and |'^| marks, the |jumplist| or the
1033 |changelist|.
1034 Useful when making a change or inserting text
1035 automatically and the user doesn't want to go to this
1036 position. E.g., when updating a "Last change"
1037 timestamp in the first line: >
1038
Bram Moolenaare5180522005-12-10 20:19:46 +00001039 :let lnum = line(".")
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001040 :keepjumps normal gg
1041 :call SetLastChange()
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001042 :keepjumps exe "normal " .. lnum .. "G"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001043<
1044 Note that ":keepjumps" must be used for every command.
1045 When invoking a function the commands in that function
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001046 can still change the jumplist. Also, for
Bram Moolenaar13065c42005-01-08 16:08:21 +00001047 ":keepjumps exe 'command '" the "command" won't keep
1048 jumps. Instead use: ":exe 'keepjumps command'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049
1050==============================================================================
10518. Jumps *jump-motions*
1052
Bram Moolenaarb477af22018-07-15 20:20:18 +02001053A "jump" is a command that normally moves the cursor several lines away. If
1054you make the cursor "jump" the position of the cursor before the jump is
Bram Moolenaar26967612019-03-17 17:13:16 +01001055remembered. You can return to that position with the "''" and "``" commands,
Bram Moolenaarb477af22018-07-15 20:20:18 +02001056unless the line containing that position was changed or deleted. The
1057following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N",
1058"%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and the
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +01001059commands that start editing a new file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060
1061 *CTRL-O*
1062CTRL-O Go to [count] Older cursor position in jump list
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001063 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065<Tab> or *CTRL-I* *<Tab>*
1066CTRL-I Go to [count] newer cursor position in jump list
1067 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068
Bram Moolenaardad44732021-03-31 20:07:33 +02001069 NOTE: In the GUI and in a terminal supporting
1070 |modifyOtherKeys|, CTRL-I can be mapped separately
1071 from <Tab>, on the condition that CTRL-I is
1072 mapped before <Tab>, otherwise the mapping applies to
1073 both.
1074
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 *:ju* *:jumps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001076:ju[mps] Print the jump list (not a motion command).
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001077
1078 *:cle* *:clearjumps*
1079:cle[arjumps] Clear the jump list of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080
1081 *jumplist*
1082Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you
1083can go to cursor positions before older jumps, and back again. Thus you can
1084move up and down the list. There is a separate jump list for each window.
1085The maximum number of entries is fixed at 100.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086
zeertzjqa7aba6c2023-09-21 14:22:57 +08001087For example, after three jump commands you have this jump list: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088
zeertzjqa7aba6c2023-09-21 14:22:57 +08001089 jump line col file/text
1090 3 1 0 some text
1091 2 70 0 another line
1092 1 1154 23 end.
1093 >
1094<
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001095The "file/text" column shows the file name, or the text at the jump if it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096in the current file (an indent is removed and a long line is truncated to fit
1097in the window).
1098
Christian Brabandta0f659c2022-04-09 13:35:00 +01001099The marker ">" indicates the current position in the jumplist. It may not be
Bram Moolenaar75ab5902022-04-18 15:36:40 +01001100shown when filtering the |:jumps| command using |:filter|
Christian Brabandta0f659c2022-04-09 13:35:00 +01001101
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102You are currently in line 1167. If you then use the CTRL-O command, the
zeertzjqa7aba6c2023-09-21 14:22:57 +08001103cursor is put in line 1154. This results in: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104
zeertzjqa7aba6c2023-09-21 14:22:57 +08001105 jump line col file/text
1106 2 1 0 some text
1107 1 70 0 another line
1108 > 0 1154 23 end.
1109 1 1167 0 foo bar
1110<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111The pointer will be set at the last used jump position. The next CTRL-O
1112command will use the entry above it, the next CTRL-I command will use the
1113entry below it. If the pointer is below the last entry, this indicates that
1114you did not use a CTRL-I or CTRL-O before. In this case the CTRL-O command
1115will cause the cursor position to be added to the jump list, so you can get
1116back to the position before the CTRL-O. In this case this is line 1167.
1117
1118With more CTRL-O commands you will go to lines 70 and 1. If you use CTRL-I
1119you can go back to 1154 and 1167 again. Note that the number in the "jump"
1120column indicates the count for the CTRL-O or CTRL-I command that takes you to
1121this position.
1122
1123If you use a jump command, the current line number is inserted at the end of
1124the jump list. If the same line was already in the jump list, it is removed.
1125The result is that when repeating CTRL-O you will get back to old positions
1126only once.
1127
1128When the |:keepjumps| command modifier is used, jumps are not stored in the
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001129jumplist. Jumps are also not stored in other cases, e.g., in a |:global|
Bram Moolenaar9ba7e172013-07-17 22:37:26 +02001130command. You can explicitly add a jump by setting the ' mark with "m'". Note
1131that calling setpos() does not do this.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
1133After the CTRL-O command that got you into line 1154 you could give another
zeertzjqa7aba6c2023-09-21 14:22:57 +08001134jump command (e.g., "G"). The jump list would then become: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135
zeertzjqa7aba6c2023-09-21 14:22:57 +08001136 jump line col file/text
1137 4 1 0 some text
1138 3 70 0 another line
1139 2 1167 0 foo bar
1140 1 1154 23 end.
1141 >
1142<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143The line numbers will be adjusted for deleted and inserted lines. This fails
1144if you stop editing a file without writing, like with ":n!".
1145
1146When you split a window, the jumplist will be copied to the new window.
1147
1148If you have included the ' item in the 'viminfo' option the jumplist will be
1149stored in the viminfo file and restored when starting Vim.
1150
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001151 *jumplist-stack*
1152When 'jumpoptions' option includes "stack", the jumplist behaves like the tag
1153stack. When jumping to a new location from the middle of the jumplist, the
1154locations after the current position will be discarded. With this option set
1155you can move through a tree of jump locations. When going back up a branch and
1156then down another branch, CTRL-O still takes you further up the tree.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001158Given a jumplist like the following in which CTRL-O has been used to move back
1159three times to location X: >
1160
1161 jump line col file/text
1162 2 1260 8 mark.c <-- location X-2
1163 1 685 0 eval.c <-- location X-1
1164 > 0 462 36 eval.c <-- location X
1165 1 479 39 eval.c
1166 2 213 2 mark.c
1167 3 181 0 mark.c
1168<
1169jumping to (new) location Y results in the locations after the current
1170locations being removed: >
1171
1172 jump line col file/text
1173 3 1260 8 mark.c <-- location X-2
1174 2 685 0 eval.c <-- location X-1
1175 1 462 36 eval.c <-- location X
1176 >
1177<
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001178Then, when yet another location Z is jumped to, the new location Y appears
1179directly after location X in the jumplist and location X remains in the same
1180position relative to the locations (X-1, X-2, etc., ...) that had been before
1181it prior to the original jump from X to Y: >
1182
1183 jump line col file/text
1184 4 1260 8 mark.c <-- location X-2
1185 3 685 0 eval.c <-- location X-1
1186 2 462 36 eval.c <-- location X
zeertzjqa7aba6c2023-09-21 14:22:57 +08001187 1 100 0 buffer.c <-- location Y
Yegappan Lakshmanan87018252023-09-20 20:20:04 +02001188 >
1189<
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190CHANGE LIST JUMPS *changelist* *change-list-jumps* *E664*
1191
1192When making a change the cursor position is remembered. One position is
1193remembered for every change that can be undone, unless it is close to a
1194previous change. Two commands can be used to jump to positions of changes,
1195also those that have been undone:
1196
1197 *g;* *E662*
1198g; Go to [count] older position in change list.
1199 If [count] is larger than the number of older change
1200 positions go to the oldest change.
1201 If there is no older change an error message is given.
1202 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203
1204 *g,* *E663*
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +01001205g, Go to [count] newer position in change list.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001206 Just like |g;| but in the opposite direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
1209When using a count you jump as far back or forward as possible. Thus you can
1210use "999g;" to go to the first change for which the position is still
1211remembered. The number of entries in the change list is fixed and is the same
1212as for the |jumplist|.
1213
1214When two undo-able changes are in the same line and at a column position less
1215than 'textwidth' apart only the last one is remembered. This avoids that a
1216sequence of small changes in a line, for example "xxxxx", adds many positions
1217to the change list. When 'textwidth' is zero 'wrapmargin' is used. When that
1218also isn't set a fixed number of 79 is used. Detail: For the computations
1219bytes are used, not characters, to avoid a speed penalty (this only matters
Bram Moolenaar207f0092020-08-30 17:20:20 +02001220for multibyte encodings).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
1222Note that when text has been inserted or deleted the cursor position might be
1223a bit different from the position of the change. Especially when lines have
1224been deleted.
1225
Bram Moolenaardad44732021-03-31 20:07:33 +02001226When the `:keepjumps` command modifier is used the position of a change is not
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227remembered.
1228
1229 *:changes*
1230:changes Print the change list. A ">" character indicates the
1231 current position. Just after a change it is below the
Bram Moolenaara9604e62018-07-21 05:56:22 +02001232 newest entry, indicating that `g;` takes you to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 newest entry position. The first column indicates the
1234 count needed to take you to this position. Example:
1235
1236 change line col text ~
1237 3 9 8 bla bla bla
1238 2 11 57 foo is a bar
1239 1 14 54 the latest changed line
1240 >
1241
Bram Moolenaara9604e62018-07-21 05:56:22 +02001242 The `3g;` command takes you to line 9. Then the
1243 output of `:changes` is:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245 change line col text ~
1246 > 0 9 8 bla bla bla
1247 1 11 57 foo is a bar
1248 2 14 54 the latest changed line
1249
1250 Now you can use "g," to go to line 11 and "2g," to go
1251 to line 14.
1252
1253==============================================================================
12549. Various motions *various-motions*
1255
1256 *%*
1257% Find the next item in this line after or under the
1258 cursor and jump to its match. |inclusive| motion.
1259 Items can be:
1260 ([{}]) parenthesis or (curly/square) brackets
1261 (this can be changed with the
1262 'matchpairs' option)
1263 /* */ start or end of C-style comment
1264 #if, #ifdef, #else, #elif, #endif
1265 C preprocessor conditionals (when the
1266 cursor is on the # or no ([{
Bram Moolenaardad44732021-03-31 20:07:33 +02001267 is following)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 For other items the matchit plugin can be used, see
Bram Moolenaar446cb832008-06-24 21:56:24 +00001269 |matchit-install|. This plugin also helps to skip
1270 matches in comments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
1272 When 'cpoptions' contains "M" |cpo-M| backslashes
1273 before parens and braces are ignored. Without "M" the
1274 number of backslashes matters: an even number doesn't
1275 match with an odd number. Thus in "( \) )" and "\( (
1276 \)" the first and last parenthesis match.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001277
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 When the '%' character is not present in 'cpoptions'
1279 |cpo-%|, parens and braces inside double quotes are
1280 ignored, unless the number of parens/braces in a line
1281 is uneven and this line and the previous one does not
1282 end in a backslash. '(', '{', '[', ']', '}' and ')'
1283 are also ignored (parens and braces inside single
1284 quotes). Note that this works fine for C, but not for
1285 Perl, where single quotes are used for strings.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001286
1287 Nothing special is done for matches in comments. You
1288 can either use the matchit plugin |matchit-install| or
1289 put quotes around matches.
1290
1291 No count is allowed, {count}% jumps to a line {count}
1292 percentage down the file |N%|. Using '%' on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 #if/#else/#endif makes the movement linewise.
1294
1295 *[(*
Bram Moolenaardad44732021-03-31 20:07:33 +02001296[( Go to [count] previous unmatched '('.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001297 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 *[{*
Bram Moolenaardad44732021-03-31 20:07:33 +02001299[{ Go to [count] previous unmatched '{'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001300 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 *])*
Bram Moolenaardad44732021-03-31 20:07:33 +02001302]) Go to [count] next unmatched ')'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001303 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 *]}*
Bram Moolenaardad44732021-03-31 20:07:33 +02001305]} Go to [count] next unmatched '}'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001306 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307
1308The above four commands can be used to go to the start or end of the current
1309code block. It is like doing "%" on the '(', ')', '{' or '}' at the other
1310end of the code block, but you can do this from anywhere in the code block.
1311Very useful for C programs. Example: When standing on "case x:", "[{" will
1312bring you back to the switch statement.
1313
1314 *]m*
1315]m Go to [count] next start of a method (for Java or
1316 similar structured language). When not before the
1317 start of a method, jump to the start or end of the
Christian Brabandt65672ae2023-12-27 18:53:35 +01001318 class. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 *]M*
1320]M Go to [count] next end of a method (for Java or
1321 similar structured language). When not before the end
1322 of a method, jump to the start or end of the class.
Christian Brabandt65672ae2023-12-27 18:53:35 +01001323 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 *[m*
1325[m Go to [count] previous start of a method (for Java or
1326 similar structured language). When not after the
1327 start of a method, jump to the start or end of the
1328 class. When no '{' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001329 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 *[M*
1331[M Go to [count] previous end of a method (for Java or
1332 similar structured language). When not after the
1333 end of a method, jump to the start or end of the
1334 class. When no '}' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001335 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336
Bram Moolenaardad44732021-03-31 20:07:33 +02001337The above four commands assume that the file contains a class with methods.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338The class definition is surrounded in '{' and '}'. Each method in the class
1339is also surrounded with '{' and '}'. This applies to the Java language. The
1340file looks like this: >
1341
1342 // comment
1343 class foo {
1344 int method_one() {
1345 body_one();
1346 }
1347 int method_two() {
1348 body_two();
1349 }
1350 }
Bram Moolenaardad44732021-03-31 20:07:33 +02001351
1352[To try this out copy the text and put it in a new buffer, the help text above
1353confuses the jump commands]
1354
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355Starting with the cursor on "body_two()", using "[m" will jump to the '{' at
1356the start of "method_two()" (obviously this is much more useful when the
1357method is long!). Using "2[m" will jump to the start of "method_one()".
1358Using "3[m" will jump to the start of the class.
1359
1360 *[#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001361[# Go to [count] previous unmatched "#if" or "#else".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001362 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363
1364 *]#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001365]# Go to [count] next unmatched "#else" or "#endif".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001366 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367
1368These two commands work in C programs that contain #if/#else/#endif
1369constructs. It brings you to the start or end of the #if/#else/#endif where
1370the current line is included. You can then use "%" to go to the matching line.
1371
1372 *[star* *[/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001373[* or [/ Go to [count] previous start of a C comment "/*".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001374 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
1376 *]star* *]/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001377]* or ]/ Go to [count] next end of a C comment "*/".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001378 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379
1380
1381 *H*
1382H To line [count] from top (Home) of window (default:
1383 first line on the window) on the first non-blank
1384 character |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001385 Cursor is adjusted for 'scrolloff' option, unless an
1386 operator is pending, in which case the text may
1387 scroll. E.g. "yH" yanks from the first visible line
1388 until the cursor line (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389
1390 *M*
1391M To Middle line of window, on the first non-blank
1392 character |linewise|. See also 'startofline' option.
1393
1394 *L*
1395L To line [count] from bottom of window (default: Last
1396 line on the window) on the first non-blank character
1397 |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001398 Cursor is adjusted for 'scrolloff' option, unless an
1399 operator is pending, in which case the text may
1400 scroll. E.g. "yL" yanks from the cursor to the last
1401 visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402
1403<LeftMouse> Moves to the position on the screen where the mouse
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001404 click is |exclusive|. See also |<LeftMouse>|. If the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 position is in a status line, that window is made the
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001406 active window and the cursor is not moved.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001408 vim:tw=78:ts=8:noet:ft=help:norl: