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