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