blob: 46f968045a6343763af5804e2c7438e9d6f06212 [file] [log] [blame]
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +01001*motion.txt* For Vim version 9.0. Last change: 2022 Sep 26
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
172 the mapping:
173 :map CTRL-V<BS> X
174 (to enter "CTRL-V<BS>" type the CTRL-V key, followed
175 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.
Christian Brabandtb5f6fe92023-08-19 15:53:16 +0200258 *g<End>*
259g<End> Like |g$| but to the last non-blank character
260 instead of the last character.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261
262 *bar*
263| To screen column [count] in the current line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100264 |exclusive| motion. Ceci n'est pas une pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
266 *f*
267f{char} To [count]'th occurrence of {char} to the right. The
268 cursor is placed on {char} |inclusive|.
269 {char} can be entered as a digraph |digraph-arg|.
270 When 'encoding' is set to Unicode, composing
271 characters may be used, see |utf-8-char-arg|.
272 |:lmap| mappings apply to {char}. The CTRL-^ command
273 in Insert mode can be used to switch this on/off
274 |i_CTRL-^|.
275
276 *F*
277F{char} To the [count]'th occurrence of {char} to the left.
Bram Moolenaar78984f52005-08-01 07:19:10 +0000278 The cursor is placed on {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 {char} can be entered like with the |f| command.
280
281 *t*
282t{char} Till before [count]'th occurrence of {char} to the
283 right. The cursor is placed on the character left of
284 {char} |inclusive|.
285 {char} can be entered like with the |f| command.
286
287 *T*
288T{char} Till after [count]'th occurrence of {char} to the
289 left. The cursor is placed on the character right of
Bram Moolenaar78984f52005-08-01 07:19:10 +0000290 {char} |exclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291 {char} can be entered like with the |f| command.
292
293 *;*
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200294; Repeat latest f, t, F or T [count] times. See |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295
296 *,*
297, Repeat latest f, t, F or T in opposite direction
Bram Moolenaar8b3e0332011-06-26 05:36:34 +0200298 [count] times. See also |cpo-;|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300==============================================================================
3013. Up-down motions *up-down-motions*
302
303k or *k*
304<Up> or *<Up>* *CTRL-P*
305CTRL-P [count] lines upward |linewise|.
306
307j or *j*
308<Down> or *<Down>*
309CTRL-J or *CTRL-J*
310<NL> or *<NL>* *CTRL-N*
311CTRL-N [count] lines downward |linewise|.
312
313gk or *gk* *g<Up>*
314g<Up> [count] display lines upward. |exclusive| motion.
315 Differs from 'k' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200316 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317
318gj or *gj* *g<Down>*
319g<Down> [count] display lines downward. |exclusive| motion.
320 Differs from 'j' when lines wrap, and when used with
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200321 an operator, because it's not linewise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
323 *-*
324- <minus> [count] lines upward, on the first non-blank
325 character |linewise|.
326
327+ or *+*
328CTRL-M or *CTRL-M* *<CR>*
329<CR> [count] lines downward, on the first non-blank
330 character |linewise|.
331
332 *_*
333_ <underscore> [count] - 1 lines downward, on the first non-blank
334 character |linewise|.
335
336 *G*
337G Goto line [count], default last line, on the first
338 non-blank character |linewise|. If 'startofline' not
339 set, keep the same column.
Bram Moolenaar26967612019-03-17 17:13:16 +0100340 G is one of the |jump-motions|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341
342 *<C-End>*
343<C-End> Goto line [count], default last line, on the last
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200344 character |inclusive|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345
346<C-Home> or *gg* *<C-Home>*
347gg Goto line [count], default first line, on the first
348 non-blank character |linewise|. If 'startofline' not
349 set, keep the same column.
350
Bram Moolenaar9b451252012-08-15 17:43:31 +0200351 *:[range]*
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100352:[range] Set the cursor on the last line number in [range].
353 [range] can also be just one line number, e.g., ":1"
354 or ":'m".
Bram Moolenaar00a927d2010-05-14 23:24:24 +0200355 In contrast with |G| this command does not modify the
356 |jumplist|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 *N%*
358{count}% Go to {count} percentage in the file, on the first
359 non-blank in the line |linewise|. To compute the new
360 line number this formula is used:
361 ({count} * number-of-lines + 99) / 100
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200362 See also 'startofline' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
364:[range]go[to] [count] *:go* *:goto* *go*
Bram Moolenaar92dff182014-02-11 19:15:50 +0100365[count]go Go to [count] byte in the buffer. Default [count] is
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 one, start of the file. When giving [range], the
367 last number in it used as the byte count. End-of-line
368 characters are counted depending on the current
369 'fileformat' setting.
Bram Moolenaar251e1912011-06-19 05:09:16 +0200370 Also see the |line2byte()| function, and the 'o'
371 option in 'statusline'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372 {not available when compiled without the
373 |+byte_offset| feature}
374
375These commands move to the specified line. They stop when reaching the first
376or the last line. The first two commands put the cursor in the same column
377(if possible) as it was after the last command that changed the column,
378except after the "$" command, then the cursor will be put on the last
379character of the line.
380
Bram Moolenaar7c626922005-02-07 22:01:03 +0000381If "k", "-" or CTRL-P is used with a [count] and there are less than [count]
382lines above the cursor and the 'cpo' option includes the "-" flag it is an
383error. |cpo--|.
384
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385==============================================================================
3864. Word motions *word-motions*
387
388<S-Right> or *<S-Right>* *w*
389w [count] words forward. |exclusive| motion.
390
391<C-Right> or *<C-Right>* *W*
392W [count] WORDS forward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000393 If <C-Right> does not work, check out
394 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395
396 *e*
397e Forward to the end of word [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000398 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399
400 *E*
401E Forward to the end of WORD [count] |inclusive|.
Bram Moolenaar446cb832008-06-24 21:56:24 +0000402 Does not stop in an empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403
404<S-Left> or *<S-Left>* *b*
405b [count] words backward. |exclusive| motion.
406
407<C-Left> or *<C-Left>* *B*
408B [count] WORDS backward. |exclusive| motion.
Bram Moolenaar47003982021-12-05 21:54:04 +0000409 If <C-Left> does not work, check out
410 |arrow_modifiers|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411
412 *ge*
413ge Backward to the end of word [count] |inclusive|.
414
415 *gE*
416gE Backward to the end of WORD [count] |inclusive|.
417
418These commands move over words or WORDS.
419 *word*
420A word consists of a sequence of letters, digits and underscores, or a
421sequence of other non-blank characters, separated with white space (spaces,
Bram Moolenaar4770d092006-01-12 23:22:24 +0000422tabs, <EOL>). This can be changed with the 'iskeyword' option. An empty line
423is also considered to be a word.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 *WORD*
425A WORD consists of a sequence of non-blank characters, separated with white
Bram Moolenaar4770d092006-01-12 23:22:24 +0000426space. An empty line is also considered to be a WORD.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427
428A sequence of folded lines is counted for one word of a single character.
429"w" and "W", "e" and "E" move to the start/end of the first word or WORD after
430a range of folded lines. "b" and "B" move to the start of the first word or
431WORD before the fold.
432
433Special case: "cw" and "cW" are treated like "ce" and "cE" if the cursor is
434on a non-blank. This is because "cw" is interpreted as change-word, and a
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200435word does not include the following white space.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436
437Another special case: When using the "w" motion in combination with an
438operator and the last word moved over is at the end of a line, the end of
439that word becomes the end of the operated text, not the first word in the
440next line.
441
442The original Vi implementation of "e" is buggy. For example, the "e" command
443will stop on the first character of a line if the previous line was empty.
444But when you use "2e" this does not happen. In Vim "ee" and "2e" are the
445same, which is more logical. However, this causes a small incompatibility
446between Vi and Vim.
447
448==============================================================================
4495. Text object motions *object-motions*
450
451 *(*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100452( [count] |sentence|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453
454 *)*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100455) [count] |sentence|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456
457 *{*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100458{ [count] |paragraph|s backward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459
460 *}*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100461} [count] |paragraph|s forward. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462
463 *]]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100464]] [count] |section|s forward or to the next '{' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000465 first column. When used after an operator, then also
466 stops below a '}' in the first column. |exclusive|
467 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468
469 *][*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100470][ [count] |section|s forward or to the next '}' in the
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000471 first column. |exclusive|
472 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473
474 *[[*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100475[[ [count] |section|s backward or to the previous '{' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000476 the first column. |exclusive|
477 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
479 *[]*
Bram Moolenaarcbaff5e2022-04-08 17:45:08 +0100480[] [count] |section|s backward or to the previous '}' in
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000481 the first column. |exclusive|
482 Note that |exclusive-linewise| often applies.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483
484These commands move over three kinds of text objects.
485
486 *sentence*
487A sentence is defined as ending at a '.', '!' or '?' followed by either the
488end of a line, or by a space or tab. Any number of closing ')', ']', '"'
489and ''' characters may appear after the '.', '!' or '?' before the spaces,
490tabs or end of line. A paragraph and section boundary is also a sentence
491boundary.
492If the 'J' flag is present in 'cpoptions', at least two spaces have to
493follow the punctuation mark; <Tab>s are not recognized as white space.
494The definition of a sentence cannot be changed.
495
496 *paragraph*
497A paragraph begins after each empty line, and also at each of a set of
498paragraph macros, specified by the pairs of characters in the 'paragraphs'
Bram Moolenaar446cb832008-06-24 21:56:24 +0000499option. The default is "IPLPPPQPP TPHPLIPpLpItpplpipbp", which corresponds to
500the macros ".IP", ".LP", etc. (These are nroff macros, so the dot must be in
501the first column). A section boundary is also a paragraph boundary.
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000502Note that a blank line (only containing white space) is NOT a paragraph
503boundary.
504Also note that this does not include a '{' or '}' in the first column. When
505the '{' flag is in 'cpoptions' then '{' in the first column is used as a
506paragraph boundary |posix|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
508 *section*
509A section begins after a form-feed (<C-L>) in the first column and at each of
510a set of section macros, specified by the pairs of characters in the
511'sections' option. The default is "SHNHH HUnhsh", which defines a section to
512start at the nroff macros ".SH", ".NH", ".H", ".HU", ".nh" and ".sh".
513
Bram Moolenaar207f0092020-08-30 17:20:20 +0200514The "]]" and "[[" commands stop at the '{' in the first column. This is
515useful to find the start of a function in a C program. To search for a '}' in
516the first column, the end of a C function, use "][" (forward) or "[]"
517(backward). Note that the first character of the command determines the
518search direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
520If your '{' or '}' are not in the first column, and you would like to use "[["
521and "]]" anyway, try these mappings: >
522 :map [[ ?{<CR>w99[{
523 :map ][ /}<CR>b99]}
524 :map ]] j0[[%/{<CR>
525 :map [] k$][%?}<CR>
526[type these literally, see |<>|]
527
528==============================================================================
5296. Text object selection *object-select* *text-objects*
530 *v_a* *v_i*
531
532This is a series of commands that can only be used while in Visual mode or
533after an operator. The commands that start with "a" select "a"n object
534including white space, the commands starting with "i" select an "inner" object
535without white space, or just the white space. Thus the "inner" commands
536always select less text than the "a" commands.
537
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200538Also see `gn` and `gN`, operating on the last search pattern.
539
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 *v_aw* *aw*
541aw "a word", select [count] words (see |word|).
542 Leading or trailing white space is included, but not
543 counted.
544 When used in Visual linewise mode "aw" switches to
545 Visual characterwise mode.
546
547 *v_iw* *iw*
548iw "inner word", select [count] words (see |word|).
549 White space between words is counted too.
550 When used in Visual linewise mode "iw" switches to
551 Visual characterwise mode.
552
553 *v_aW* *aW*
554aW "a WORD", select [count] WORDs (see |WORD|).
555 Leading or trailing white space is included, but not
556 counted.
557 When used in Visual linewise mode "aW" switches to
558 Visual characterwise mode.
559
560 *v_iW* *iW*
561iW "inner WORD", select [count] WORDs (see |WORD|).
562 White space between words is counted too.
563 When used in Visual linewise mode "iW" switches to
564 Visual characterwise mode.
565
566 *v_as* *as*
567as "a sentence", select [count] sentences (see
568 |sentence|).
569 When used in Visual mode it is made characterwise.
570
571 *v_is* *is*
572is "inner sentence", select [count] sentences (see
573 |sentence|).
574 When used in Visual mode it is made characterwise.
575
576 *v_ap* *ap*
577ap "a paragraph", select [count] paragraphs (see
578 |paragraph|).
579 Exception: a blank line (only containing white space)
580 is also a paragraph boundary.
581 When used in Visual mode it is made linewise.
582
583 *v_ip* *ip*
584ip "inner paragraph", select [count] paragraphs (see
585 |paragraph|).
586 Exception: a blank line (only containing white space)
587 is also a paragraph boundary.
588 When used in Visual mode it is made linewise.
589
590a] *v_a]* *v_a[* *a]* *a[*
591a[ "a [] block", select [count] '[' ']' blocks. This
592 goes backwards to the [count] unclosed '[', and finds
593 the matching ']'. The enclosed text is selected,
594 including the '[' and ']'.
595 When used in Visual mode it is made characterwise.
596
597i] *v_i]* *v_i[* *i]* *i[*
598i[ "inner [] block", select [count] '[' ']' blocks. This
599 goes backwards to the [count] unclosed '[', and finds
600 the matching ']'. The enclosed text is selected,
601 excluding the '[' and ']'.
602 When used in Visual mode it is made characterwise.
603
604a) *v_a)* *a)* *a(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200605a( *vab* *v_ab* *v_a(* *ab*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606ab "a block", select [count] blocks, from "[count] [(" to
607 the matching ')', including the '(' and ')' (see
608 |[(|). Does not include white space outside of the
609 parenthesis.
610 When used in Visual mode it is made characterwise.
611
612i) *v_i)* *i)* *i(*
Bram Moolenaar269f5952016-07-15 22:54:41 +0200613i( *vib* *v_ib* *v_i(* *ib*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614ib "inner block", select [count] blocks, from "[count] [("
615 to the matching ')', excluding the '(' and ')' (see
Bram Moolenaare1f3fd12022-08-15 18:51:32 +0100616 |[(|). If the cursor is not inside a () block, then
617 find the next "(".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 When used in Visual mode it is made characterwise.
619
620a> *v_a>* *v_a<* *a>* *a<*
621a< "a <> block", select [count] <> blocks, from the
622 [count]'th unmatched '<' backwards to the matching
623 '>', including the '<' and '>'.
624 When used in Visual mode it is made characterwise.
625
626i> *v_i>* *v_i<* *i>* *i<*
627i< "inner <> block", select [count] <> blocks, from
628 the [count]'th unmatched '<' backwards to the matching
629 '>', excluding the '<' and '>'.
630 When used in Visual mode it is made characterwise.
631
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000632 *v_at* *at*
633at "a tag block", select [count] tag blocks, from the
634 [count]'th unmatched "<aaa>" backwards to the matching
635 "</aaa>", including the "<aaa>" and "</aaa>".
636 See |tag-blocks| about the details.
637 When used in Visual mode it is made characterwise.
Bram Moolenaar88774872022-08-16 20:24:29 +0100638 Only available when compiled with the |+eval| feature.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000639
640 *v_it* *it*
641it "inner tag block", select [count] tag blocks, from the
642 [count]'th unmatched "<aaa>" backwards to the matching
643 "</aaa>", excluding the "<aaa>" and "</aaa>".
644 See |tag-blocks| about the details.
645 When used in Visual mode it is made characterwise.
646
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647a} *v_a}* *a}* *a{*
648a{ *v_aB* *v_a{* *aB*
649aB "a Block", select [count] Blocks, from "[count] [{" to
650 the matching '}', including the '{' and '}' (see
651 |[{|).
652 When used in Visual mode it is made characterwise.
653
654i} *v_i}* *i}* *i{*
655i{ *v_iB* *v_i{* *iB*
656iB "inner Block", select [count] Blocks, from "[count] [{"
657 to the matching '}', excluding the '{' and '}' (see
658 |[{|).
659 When used in Visual mode it is made characterwise.
660
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000661a" *v_aquote* *aquote*
662a' *v_a'* *a'*
663a` *v_a`* *a`*
664 "a quoted string". Selects the text from the previous
Bram Moolenaar5a305422006-04-28 22:38:25 +0000665 quote until the next quote. The 'quoteescape' option
666 is used to skip escaped quotes.
667 Only works within one line.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000668 When the cursor starts on a quote, Vim will figure out
669 which quote pairs form a string by searching from the
670 start of the line.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100671 Any trailing white space is included, unless there is
672 none, then leading white space is included.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000673 When used in Visual mode it is made characterwise.
674 Repeating this object in Visual mode another string is
675 included. A count is currently not used.
676
677i" *v_iquote* *iquote*
678i' *v_i'* *i'*
679i` *v_i`* *i`*
680 Like a", a' and a`, but exclude the quotes and
681 repeating won't extend the Visual selection.
Bram Moolenaarab194812005-09-14 21:40:12 +0000682 Special case: With a count of 2 the quotes are
683 included, but no extra white space as with a"/a'/a`.
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000684
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685When used after an operator:
686For non-block objects:
687 For the "a" commands: The operator applies to the object and the white
688 space after the object. If there is no white space after the object
689 or when the cursor was in the white space before the object, the white
690 space before the object is included.
691 For the "inner" commands: If the cursor was on the object, the
692 operator applies to the object. If the cursor was on white space, the
693 operator applies to the white space.
694For a block object:
695 The operator applies to the block where the cursor is in, or the block
696 on which the cursor is on one of the braces. For the "inner" commands
697 the surrounding braces are excluded. For the "a" commands, the braces
698 are included.
699
700When used in Visual mode:
701When start and end of the Visual area are the same (just after typing "v"):
702 One object is selected, the same as for using an operator.
703When start and end of the Visual area are not the same:
704 For non-block objects the area is extended by one object or the white
705 space up to the next object, or both for the "a" objects. The
706 direction in which this happens depends on which side of the Visual
707 area the cursor is. For the block objects the block is extended one
708 level outwards.
709
710For illustration, here is a list of delete commands, grouped from small to big
711objects. Note that for a single character and a whole line the existing vi
712movement commands are used.
713 "dl" delete character (alias: "x") |dl|
714 "diw" delete inner word *diw*
715 "daw" delete a word *daw*
716 "diW" delete inner WORD (see |WORD|) *diW*
717 "daW" delete a WORD (see |WORD|) *daW*
Bram Moolenaar6c35bea2012-07-25 17:49:10 +0200718 "dgn" delete the next search pattern match *dgn*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 "dd" delete one line |dd|
720 "dis" delete inner sentence *dis*
721 "das" delete a sentence *das*
722 "dib" delete inner '(' ')' block *dib*
723 "dab" delete a '(' ')' block *dab*
724 "dip" delete inner paragraph *dip*
725 "dap" delete a paragraph *dap*
726 "diB" delete inner '{' '}' block *diB*
727 "daB" delete a '{' '}' block *daB*
728
729Note the difference between using a movement command and an object. The
730movement command operates from here (cursor position) to where the movement
731takes us. When using an object the whole object is operated upon, no matter
732where on the object the cursor is. For example, compare "dw" and "daw": "dw"
733deletes from the cursor position to the start of the next word, "daw" deletes
734the word under the cursor and the space after or before it.
735
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000736
737Tag blocks *tag-blocks*
738
739For the "it" and "at" text objects an attempt is done to select blocks between
740matching tags for HTML and XML. But since these are not completely compatible
741there are a few restrictions.
742
743The normal method is to select a <tag> until the matching </tag>. For "at"
744the tags are included, for "it" they are excluded. But when "it" is repeated
Bram Moolenaar06a89a52006-04-29 22:01:03 +0000745the tags will be included (otherwise nothing would change). Also, "it" used
746on a tag block with no contents will select the leading tag.
Bram Moolenaar6c131c42005-07-19 22:17:30 +0000747
748"<aaa/>" items are skipped. Case is ignored, also for XML where case does
749matter.
750
751In HTML it is possible to have a tag like <br> or <meta ...> without a
752matching end tag. These are ignored.
753
754The text objects are tolerant about mistakes. Stray end tags are ignored.
755
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756==============================================================================
7577. Marks *mark-motions* *E20* *E78*
758
759Jumping to a mark can be done in two ways:
7601. With ` (backtick): The cursor is positioned at the specified location
761 and the motion is |exclusive|.
7622. With ' (single quote): The cursor is positioned on the first non-blank
763 character in the line of the specified location and
764 the motion is linewise.
765
766 *m* *mark* *Mark*
767m{a-zA-Z} Set mark {a-zA-Z} at cursor position (does not move
768 the cursor, this is not a motion command).
769
770 *m'* *m`*
771m' or m` Set the previous context mark. This can be jumped to
772 with the "''" or "``" command (does not move the
773 cursor, this is not a motion command).
774
775 *m[* *m]*
776m[ or m] Set the |'[| or |']| mark. Useful when an operator is
777 to be simulated by multiple commands. (does not move
778 the cursor, this is not a motion command).
779
Bram Moolenaar30b65812012-07-12 22:01:11 +0200780 *m<* *m>*
781m< or m> Set the |'<| or |'>| mark. Useful to change what the
782 `gv` command selects. (does not move the cursor, this
783 is not a motion command).
784 Note that the Visual mode cannot be set, only the
785 start and end position.
786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787 *:ma* *:mark* *E191*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000788:[range]ma[rk] {a-zA-Z'}
789 Set mark {a-zA-Z'} at last line number in [range],
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790 column 0. Default is cursor line.
791
792 *:k*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000793:[range]k{a-zA-Z'} Same as :mark, but the space before the mark name can
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 be omitted.
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000795 This command is not supported in |Vim9| script,
796 because it is too easily confused with a variable
797 name.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798
799 *'* *'a* *`* *`a*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000800'{a-z} `{a-z} Jump to the mark {a-z} in the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801
802 *'A* *'0* *`A* *`0*
Bram Moolenaar9964e462007-05-05 17:54:07 +0000803'{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 +0200804 a motion command when in another file).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
806 *g'* *g'a* *g`* *g`a*
807g'{mark} g`{mark}
808 Jump to the {mark}, but don't change the jumplist when
809 jumping within the current buffer. Example: >
810 g`"
811< jumps to the last known position in a file. See
Bram Moolenaar69a7cb42004-06-20 12:51:53 +0000812 $VIMRUNTIME/vimrc_example.vim.
813 Also see |:keepjumps|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814
815 *:marks*
816:marks List all the current marks (not a motion command).
817 The |'(|, |')|, |'{| and |'}| marks are not listed.
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000818 The first column has number zero.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200819
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 *E283*
821:marks {arg} List the marks that are mentioned in {arg} (not a
822 motion command). For example: >
823 :marks aB
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200824< to list marks 'a' and 'B'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000826 *:delm* *:delmarks*
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000827:delm[arks] {marks} Delete the specified marks. Marks that can be deleted
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000828 include A-Z and 0-9. You cannot delete the ' mark.
829 They can be specified by giving the list of mark
830 names, or with a range, separated with a dash. Spaces
831 are ignored. Examples: >
832 :delmarks a deletes mark a
833 :delmarks a b 1 deletes marks a, b and 1
834 :delmarks Aa deletes marks A and a
835 :delmarks p-z deletes marks in the range p to z
836 :delmarks ^.[] deletes marks ^ . [ ]
837 :delmarks \" deletes mark "
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000838
839:delm[arks]! Delete all marks for the current buffer, but not marks
840 A-Z or 0-9.
Bram Moolenaarc0197e22004-09-13 20:26:32 +0000841
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842A mark is not visible in any way. It is just a position in the file that is
843remembered. Do not confuse marks with named registers, they are totally
844unrelated.
845
846'a - 'z lowercase marks, valid within one file
847'A - 'Z uppercase marks, also called file marks, valid between files
848'0 - '9 numbered marks, set from .viminfo file
849
850Lowercase marks 'a to 'z are remembered as long as the file remains in the
851buffer list. If you remove the file from the buffer list, all its marks are
852lost. If you delete a line that contains a mark, that mark is erased.
853
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854Lowercase marks can be used in combination with operators. For example: "d't"
855deletes the lines from the cursor position to mark 't'. Hint: Use mark 't' for
856Top, 'b' for Bottom, etc.. Lowercase marks are restored when using undo and
857redo.
858
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200859Uppercase marks 'A to 'Z include the file name. You can use them to jump from
860file to file. You can only use an uppercase mark with an operator if the mark
861is in the current file. The line number of the mark remains correct, even if
862you insert/delete lines or edit another file for a moment. When the 'viminfo'
863option is not empty, uppercase marks are kept in the .viminfo file. See
864|viminfo-file-marks|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865
866Numbered marks '0 to '9 are quite different. They can not be set directly.
867They are only present when using a viminfo file |viminfo-file|. Basically '0
868is the location of the cursor when you last exited Vim, '1 the last but one
869time, etc. Use the "r" flag in 'viminfo' to specify files for which no
870Numbered mark should be stored. See |viminfo-file-marks|.
871
872
873 *'[* *`[*
874'[ `[ To the first character of the previously changed
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200875 or yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
877 *']* *`]*
878'] `] To the last character of the previously changed or
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200879 yanked text.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880
881After executing an operator the Cursor is put at the beginning of the text
882that was operated upon. After a put command ("p" or "P") the cursor is
883sometimes placed at the first inserted line and sometimes on the last inserted
884character. The four commands above put the cursor at either end. Example:
885After yanking 10 lines you want to go to the last one of them: "10Y']". After
886inserting several lines with the "p" command you want to jump to the lowest
887inserted line: "p']". This also works for text that has been inserted.
888
889Note: After deleting text, the start and end positions are the same, except
890when using blockwise Visual mode. These commands do not work when no change
891was made yet in the current file.
892
893 *'<* *`<*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000894'< `< To the first line or character of the last selected
895 Visual area in the current buffer. For block mode it
896 may also be the last character in the first line (to
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200897 be able to define the block).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898
899 *'>* *`>*
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000900'> `> To the last line or character of the last selected
901 Visual area in the current buffer. For block mode it
902 may also be the first character of the last line (to
903 be able to define the block). Note that 'selection'
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000904 applies, the position may be just after the Visual
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200905 area.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906
907 *''* *``*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000908'' `` To the position before the latest jump, or where the
909 last "m'" or "m`" command was given. Not set when the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 |:keepjumps| command modifier was used.
911 Also see |restore-position|.
912
913 *'quote* *`quote*
914'" `" To the cursor position when last exiting the current
915 buffer. Defaults to the first character of the first
916 line. See |last-position-jump| for how to use this
917 for each opened file.
918 Only one position is remembered per buffer, not one
919 for each window. As long as the buffer is visible in
920 a window the position won't be changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921
922 *'^* *`^*
923'^ `^ To the position where the cursor was the last time
Bram Moolenaar81695252004-12-29 20:58:21 +0000924 when Insert mode was stopped. This is used by the
925 |gi| command. Not set when the |:keepjumps| command
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200926 modifier was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927
928 *'.* *`.*
929'. `. To the position where the last change was made. The
930 position is at or near where the change started.
931 Sometimes a command is executed as several changes,
932 then the position can be near the end of what the
933 command changed. For example when inserting a word,
934 the position will be on the last character.
Bram Moolenaar51628222016-12-01 23:03:28 +0100935 To jump to older changes use |g;|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936
937 *'(* *`(*
938'( `( To the start of the current sentence, like the |(|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200939 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940
941 *')* *`)*
942') `) To the end of the current sentence, like the |)|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200943 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944
945 *'{* *`{*
946'{ `{ To the start of the current paragraph, like the |{|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200947 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
949 *'}* *`}*
950'} `} To the end of the current paragraph, like the |}|
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200951 command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000952
953These commands are not marks themselves, but jump to a mark:
954
955 *]'*
956]' [count] times to next line with a lowercase mark below
957 the cursor, on the first non-blank character in the
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200958 line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959
960 *]`*
Bram Moolenaardad44732021-03-31 20:07:33 +0200961]` [count] times to lowercase mark after the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962
963 *['*
964[' [count] times to previous line with a lowercase mark
965 before the cursor, on the first non-blank character in
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200966 the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
968 *[`*
969[` [count] times to lowercase mark before the cursor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200972:loc[kmarks] {command} *:loc* *:lock* *:lockmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 Execute {command} without adjusting marks. This is
974 useful when changing text in a way that the line count
975 will be the same when the change has completed.
976 WARNING: When the line count does change, marks below
977 the change will keep their line number, thus move to
978 another text line.
979 These items will not be adjusted for deleted/inserted
980 lines:
981 - lower case letter marks 'a - 'z
982 - upper case letter marks 'A - 'Z
983 - numbered marks '0 - '9
984 - last insert position '^
985 - last change position '.
Bram Moolenaar09c6f262019-11-17 15:55:14 +0100986 - last affected text area '[ and ']
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 - the Visual area '< and '>
988 - line numbers in placed signs
989 - line numbers in quickfix positions
990 - positions in the |jumplist|
991 - positions in the |tagstack|
992 These items will still be adjusted:
993 - previous context mark ''
994 - the cursor position
995 - the view of a window on a buffer
996 - folds
997 - diffs
998
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200999:kee[pmarks] {command} *:kee* *:keep* *:keepmarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 Currently only has effect for the filter command
1001 |:range!|:
1002 - When the number of lines after filtering is equal to
1003 or larger than before, all marks are kept at the
1004 same line number.
1005 - When the number of lines decreases, the marks in the
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001006 lines that disappeared are deleted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007 In any case the marks below the filtered text have
1008 their line numbers adjusted, thus stick to the text,
1009 as usual.
1010 When the 'R' flag is missing from 'cpoptions' this has
1011 the same effect as using ":keepmarks".
1012
1013 *:keepj* *:keepjumps*
1014:keepj[umps] {command}
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001015 Moving around in {command} does not change the |''|,
1016 |'.| and |'^| marks, the |jumplist| or the
1017 |changelist|.
1018 Useful when making a change or inserting text
1019 automatically and the user doesn't want to go to this
1020 position. E.g., when updating a "Last change"
1021 timestamp in the first line: >
1022
Bram Moolenaare5180522005-12-10 20:19:46 +00001023 :let lnum = line(".")
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001024 :keepjumps normal gg
1025 :call SetLastChange()
Bram Moolenaarc51cf032022-02-26 12:25:45 +00001026 :keepjumps exe "normal " .. lnum .. "G"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001027<
1028 Note that ":keepjumps" must be used for every command.
1029 When invoking a function the commands in that function
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001030 can still change the jumplist. Also, for
Bram Moolenaar13065c42005-01-08 16:08:21 +00001031 ":keepjumps exe 'command '" the "command" won't keep
1032 jumps. Instead use: ":exe 'keepjumps command'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033
1034==============================================================================
10358. Jumps *jump-motions*
1036
Bram Moolenaarb477af22018-07-15 20:20:18 +02001037A "jump" is a command that normally moves the cursor several lines away. If
1038you make the cursor "jump" the position of the cursor before the jump is
Bram Moolenaar26967612019-03-17 17:13:16 +01001039remembered. You can return to that position with the "''" and "``" commands,
Bram Moolenaarb477af22018-07-15 20:20:18 +02001040unless the line containing that position was changed or deleted. The
1041following commands are "jump" commands: "'", "`", "G", "/", "?", "n", "N",
1042"%", "(", ")", "[[", "]]", "{", "}", ":s", ":tag", "L", "M", "H" and the
Bram Moolenaarf0d58ef2018-11-16 16:13:44 +01001043commands that start editing a new file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
1045 *CTRL-O*
1046CTRL-O Go to [count] Older cursor position in jump list
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001047 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
1049<Tab> or *CTRL-I* *<Tab>*
1050CTRL-I Go to [count] newer cursor position in jump list
1051 (not a motion command).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052
Bram Moolenaardad44732021-03-31 20:07:33 +02001053 NOTE: In the GUI and in a terminal supporting
1054 |modifyOtherKeys|, CTRL-I can be mapped separately
1055 from <Tab>, on the condition that CTRL-I is
1056 mapped before <Tab>, otherwise the mapping applies to
1057 both.
1058
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 *:ju* *:jumps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001060:ju[mps] Print the jump list (not a motion command).
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001061
1062 *:cle* *:clearjumps*
1063:cle[arjumps] Clear the jump list of the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064
1065 *jumplist*
1066Jumps are remembered in a jump list. With the CTRL-O and CTRL-I command you
1067can go to cursor positions before older jumps, and back again. Thus you can
1068move up and down the list. There is a separate jump list for each window.
1069The maximum number of entries is fixed at 100.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070
1071For example, after three jump commands you have this jump list:
1072
Bram Moolenaardad44732021-03-31 20:07:33 +02001073 jump line col file/text ~
1074 3 1 0 some text ~
1075 2 70 0 another line ~
1076 1 1154 23 end. ~
1077 > ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001079The "file/text" column shows the file name, or the text at the jump if it is
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080in the current file (an indent is removed and a long line is truncated to fit
1081in the window).
1082
Christian Brabandta0f659c2022-04-09 13:35:00 +01001083The marker ">" indicates the current position in the jumplist. It may not be
Bram Moolenaar75ab5902022-04-18 15:36:40 +01001084shown when filtering the |:jumps| command using |:filter|
Christian Brabandta0f659c2022-04-09 13:35:00 +01001085
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086You are currently in line 1167. If you then use the CTRL-O command, the
1087cursor is put in line 1154. This results in:
1088
Bram Moolenaardad44732021-03-31 20:07:33 +02001089 jump line col file/text ~
1090 2 1 0 some text ~
1091 1 70 0 another line ~
1092 > 0 1154 23 end. ~
1093 1 1167 0 foo bar ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094
1095The pointer will be set at the last used jump position. The next CTRL-O
1096command will use the entry above it, the next CTRL-I command will use the
1097entry below it. If the pointer is below the last entry, this indicates that
1098you did not use a CTRL-I or CTRL-O before. In this case the CTRL-O command
1099will cause the cursor position to be added to the jump list, so you can get
1100back to the position before the CTRL-O. In this case this is line 1167.
1101
1102With more CTRL-O commands you will go to lines 70 and 1. If you use CTRL-I
1103you can go back to 1154 and 1167 again. Note that the number in the "jump"
1104column indicates the count for the CTRL-O or CTRL-I command that takes you to
1105this position.
1106
1107If you use a jump command, the current line number is inserted at the end of
1108the jump list. If the same line was already in the jump list, it is removed.
1109The result is that when repeating CTRL-O you will get back to old positions
1110only once.
1111
1112When the |:keepjumps| command modifier is used, jumps are not stored in the
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001113jumplist. Jumps are also not stored in other cases, e.g., in a |:global|
Bram Moolenaar9ba7e172013-07-17 22:37:26 +02001114command. You can explicitly add a jump by setting the ' mark with "m'". Note
1115that calling setpos() does not do this.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116
1117After the CTRL-O command that got you into line 1154 you could give another
1118jump command (e.g., "G"). The jump list would then become:
1119
Bram Moolenaardad44732021-03-31 20:07:33 +02001120 jump line col file/text ~
1121 4 1 0 some text ~
1122 3 70 0 another line ~
1123 2 1167 0 foo bar ~
1124 1 1154 23 end. ~
1125 > ~
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126
1127The line numbers will be adjusted for deleted and inserted lines. This fails
1128if you stop editing a file without writing, like with ":n!".
1129
1130When you split a window, the jumplist will be copied to the new window.
1131
1132If you have included the ' item in the 'viminfo' option the jumplist will be
1133stored in the viminfo file and restored when starting Vim.
1134
1135
1136CHANGE LIST JUMPS *changelist* *change-list-jumps* *E664*
1137
1138When making a change the cursor position is remembered. One position is
1139remembered for every change that can be undone, unless it is close to a
1140previous change. Two commands can be used to jump to positions of changes,
1141also those that have been undone:
1142
1143 *g;* *E662*
1144g; Go to [count] older position in change list.
1145 If [count] is larger than the number of older change
1146 positions go to the oldest change.
1147 If there is no older change an error message is given.
1148 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149
1150 *g,* *E663*
Bram Moolenaar9fbdbb82022-09-27 17:30:34 +01001151g, Go to [count] newer position in change list.
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00001152 Just like |g;| but in the opposite direction.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 (not a motion command)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154
1155When using a count you jump as far back or forward as possible. Thus you can
1156use "999g;" to go to the first change for which the position is still
1157remembered. The number of entries in the change list is fixed and is the same
1158as for the |jumplist|.
1159
1160When two undo-able changes are in the same line and at a column position less
1161than 'textwidth' apart only the last one is remembered. This avoids that a
1162sequence of small changes in a line, for example "xxxxx", adds many positions
1163to the change list. When 'textwidth' is zero 'wrapmargin' is used. When that
1164also isn't set a fixed number of 79 is used. Detail: For the computations
1165bytes are used, not characters, to avoid a speed penalty (this only matters
Bram Moolenaar207f0092020-08-30 17:20:20 +02001166for multibyte encodings).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168Note that when text has been inserted or deleted the cursor position might be
1169a bit different from the position of the change. Especially when lines have
1170been deleted.
1171
Bram Moolenaardad44732021-03-31 20:07:33 +02001172When the `:keepjumps` command modifier is used the position of a change is not
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173remembered.
1174
1175 *:changes*
1176:changes Print the change list. A ">" character indicates the
1177 current position. Just after a change it is below the
Bram Moolenaara9604e62018-07-21 05:56:22 +02001178 newest entry, indicating that `g;` takes you to the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 newest entry position. The first column indicates the
1180 count needed to take you to this position. Example:
1181
1182 change line col text ~
1183 3 9 8 bla bla bla
1184 2 11 57 foo is a bar
1185 1 14 54 the latest changed line
1186 >
1187
Bram Moolenaara9604e62018-07-21 05:56:22 +02001188 The `3g;` command takes you to line 9. Then the
1189 output of `:changes` is:
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190
1191 change line col text ~
1192 > 0 9 8 bla bla bla
1193 1 11 57 foo is a bar
1194 2 14 54 the latest changed line
1195
1196 Now you can use "g," to go to line 11 and "2g," to go
1197 to line 14.
1198
1199==============================================================================
12009. Various motions *various-motions*
1201
1202 *%*
1203% Find the next item in this line after or under the
1204 cursor and jump to its match. |inclusive| motion.
1205 Items can be:
1206 ([{}]) parenthesis or (curly/square) brackets
1207 (this can be changed with the
1208 'matchpairs' option)
1209 /* */ start or end of C-style comment
1210 #if, #ifdef, #else, #elif, #endif
1211 C preprocessor conditionals (when the
1212 cursor is on the # or no ([{
Bram Moolenaardad44732021-03-31 20:07:33 +02001213 is following)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 For other items the matchit plugin can be used, see
Bram Moolenaar446cb832008-06-24 21:56:24 +00001215 |matchit-install|. This plugin also helps to skip
1216 matches in comments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217
1218 When 'cpoptions' contains "M" |cpo-M| backslashes
1219 before parens and braces are ignored. Without "M" the
1220 number of backslashes matters: an even number doesn't
1221 match with an odd number. Thus in "( \) )" and "\( (
1222 \)" the first and last parenthesis match.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001223
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 When the '%' character is not present in 'cpoptions'
1225 |cpo-%|, parens and braces inside double quotes are
1226 ignored, unless the number of parens/braces in a line
1227 is uneven and this line and the previous one does not
1228 end in a backslash. '(', '{', '[', ']', '}' and ')'
1229 are also ignored (parens and braces inside single
1230 quotes). Note that this works fine for C, but not for
1231 Perl, where single quotes are used for strings.
Bram Moolenaar446cb832008-06-24 21:56:24 +00001232
1233 Nothing special is done for matches in comments. You
1234 can either use the matchit plugin |matchit-install| or
1235 put quotes around matches.
1236
1237 No count is allowed, {count}% jumps to a line {count}
1238 percentage down the file |N%|. Using '%' on
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 #if/#else/#endif makes the movement linewise.
1240
1241 *[(*
Bram Moolenaardad44732021-03-31 20:07:33 +02001242[( Go to [count] previous unmatched '('.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001243 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 *[{*
Bram Moolenaardad44732021-03-31 20:07:33 +02001245[{ Go to [count] previous unmatched '{'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001246 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 *])*
Bram Moolenaardad44732021-03-31 20:07:33 +02001248]) Go to [count] next unmatched ')'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001249 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 *]}*
Bram Moolenaardad44732021-03-31 20:07:33 +02001251]} Go to [count] next unmatched '}'.
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001252 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254The above four commands can be used to go to the start or end of the current
1255code block. It is like doing "%" on the '(', ')', '{' or '}' at the other
1256end of the code block, but you can do this from anywhere in the code block.
1257Very useful for C programs. Example: When standing on "case x:", "[{" will
1258bring you back to the switch statement.
1259
1260 *]m*
1261]m Go to [count] next start of a method (for Java or
1262 similar structured language). When not before the
1263 start of a method, jump to the start or end of the
1264 class. When no '{' is found after the cursor, this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001265 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 *]M*
1267]M Go to [count] next end of a method (for Java or
1268 similar structured language). When not before the end
1269 of a method, jump to the start or end of the class.
1270 When no '}' is found after the cursor, this is an
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001271 error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 *[m*
1273[m Go to [count] previous start of a method (for Java or
1274 similar structured language). When not after the
1275 start of a method, jump to the start or end of the
1276 class. When no '{' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001277 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 *[M*
1279[M Go to [count] previous end of a method (for Java or
1280 similar structured language). When not after the
1281 end of a method, jump to the start or end of the
1282 class. When no '}' is found before the cursor this is
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001283 an error. |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
Bram Moolenaardad44732021-03-31 20:07:33 +02001285The above four commands assume that the file contains a class with methods.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286The class definition is surrounded in '{' and '}'. Each method in the class
1287is also surrounded with '{' and '}'. This applies to the Java language. The
1288file looks like this: >
1289
1290 // comment
1291 class foo {
1292 int method_one() {
1293 body_one();
1294 }
1295 int method_two() {
1296 body_two();
1297 }
1298 }
Bram Moolenaardad44732021-03-31 20:07:33 +02001299
1300[To try this out copy the text and put it in a new buffer, the help text above
1301confuses the jump commands]
1302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303Starting with the cursor on "body_two()", using "[m" will jump to the '{' at
1304the start of "method_two()" (obviously this is much more useful when the
1305method is long!). Using "2[m" will jump to the start of "method_one()".
1306Using "3[m" will jump to the start of the class.
1307
1308 *[#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001309[# Go to [count] previous unmatched "#if" or "#else".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001310 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311
1312 *]#*
Bram Moolenaardad44732021-03-31 20:07:33 +02001313]# Go to [count] next unmatched "#else" or "#endif".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001314 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315
1316These two commands work in C programs that contain #if/#else/#endif
1317constructs. It brings you to the start or end of the #if/#else/#endif where
1318the current line is included. You can then use "%" to go to the matching line.
1319
1320 *[star* *[/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001321[* or [/ Go to [count] previous start of a C comment "/*".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001322 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
1324 *]star* *]/*
Bram Moolenaardad44732021-03-31 20:07:33 +02001325]* or ]/ Go to [count] next end of a C comment "*/".
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001326 |exclusive| motion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327
1328
1329 *H*
1330H To line [count] from top (Home) of window (default:
1331 first line on the window) on the first non-blank
1332 character |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001333 Cursor is adjusted for 'scrolloff' option, unless an
1334 operator is pending, in which case the text may
1335 scroll. E.g. "yH" yanks from the first visible line
1336 until the cursor line (inclusive).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337
1338 *M*
1339M To Middle line of window, on the first non-blank
1340 character |linewise|. See also 'startofline' option.
1341
1342 *L*
1343L To line [count] from bottom of window (default: Last
1344 line on the window) on the first non-blank character
1345 |linewise|. See also 'startofline' option.
Bram Moolenaar44cc4cf2017-10-15 22:13:37 +02001346 Cursor is adjusted for 'scrolloff' option, unless an
1347 operator is pending, in which case the text may
1348 scroll. E.g. "yL" yanks from the cursor to the last
1349 visible line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
1351<LeftMouse> Moves to the position on the screen where the mouse
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001352 click is |exclusive|. See also |<LeftMouse>|. If the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 position is in a status line, that window is made the
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001354 active window and the cursor is not moved.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001356 vim:tw=78:ts=8:noet:ft=help:norl: