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