Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame^] | 1 | *autocmd.txt* For Vim version 7.0aa. Last change: 2004 Dec 16 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
| 5 | |
| 6 | |
| 7 | Automatic commands *autocommand* |
| 8 | |
| 9 | For a basic explanation, see section |40.3| in the user manual. |
| 10 | |
| 11 | 1. Introduction |autocmd-intro| |
| 12 | 2. Defining autocommands |autocmd-define| |
| 13 | 3. Removing autocommands |autocmd-remove| |
| 14 | 4. Listing autocommands |autocmd-list| |
| 15 | 5. Events |autocmd-events| |
| 16 | 6. Patterns |autocmd-patterns| |
| 17 | 7. Groups |autocmd-groups| |
| 18 | 8. Executing autocommands |autocmd-execute| |
| 19 | 9. Using autocommands |autocmd-use| |
| 20 | |
| 21 | {Vi does not have any of these commands} |
| 22 | {only when the |+autocmd| feature has not been disabled at compile time} |
| 23 | |
| 24 | ============================================================================== |
| 25 | 1. Introduction *autocmd-intro* |
| 26 | |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 27 | You can specify commands to be executed automatically when reading or writing |
| 28 | a file, when entering or leaving a buffer or window, and when exiting Vim. |
| 29 | For example, you can create an autocommand to set the 'cindent' option for |
| 30 | files matching *.c. You can also use autocommands to implement advanced |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 31 | features, such as editing compressed files (see |gzip-example|). The usual |
| 32 | place to put autocommands is in your .vimrc or .exrc file. |
| 33 | |
| 34 | *E203* *E204* *E143* |
| 35 | WARNING: Using autocommands is very powerful, and may lead to unexpected side |
| 36 | effects. Be careful not to destroy your text. |
| 37 | - It's a good idea to do some testing on an expendable copy of a file first. |
| 38 | For example: If you use autocommands to decompress a file when starting to |
| 39 | edit it, make sure that the autocommands for compressing when writing work |
| 40 | correctly. |
| 41 | - Be prepared for an error halfway through (e.g., disk full). Vim will mostly |
| 42 | be able to undo the changes to the buffer, but you may have to clean up the |
| 43 | changes to other files by hand (e.g., compress a file that has been |
| 44 | decompressed). |
| 45 | - If the BufRead* events allow you to edit a compressed file, the FileRead* |
| 46 | events should do the same (this makes recovery possible in some rare cases). |
| 47 | It's a good idea to use the same autocommands for the File* and Buf* events |
| 48 | when possible. |
| 49 | |
| 50 | ============================================================================== |
| 51 | 2. Defining autocommands *autocmd-define* |
| 52 | |
| 53 | Note: The ":autocmd" command cannot be followed by another command, since any |
| 54 | '|' is considered part of the command. |
| 55 | |
| 56 | *:au* *:autocmd* |
| 57 | :au[tocmd] [group] {event} {pat} [nested] {cmd} |
| 58 | Add {cmd} to the list of commands that Vim will |
| 59 | execute automatically on {event} for a file matching |
| 60 | {pat}. Vim always adds the {cmd} after existing |
| 61 | autocommands, so that the autocommands execute in the |
| 62 | order in which they were given. See |autocmd-nested| |
| 63 | for [nested]. |
| 64 | |
| 65 | Note that special characters (e.g., "%", "<cword>") in the ":autocmd" |
| 66 | arguments are not expanded when the autocommand is defined. These will be |
| 67 | expanded when the Event is recognized, and the {cmd} is executed. The only |
| 68 | exception is that "<sfile>" is expanded when the autocmd is defined. Example: |
| 69 | > |
| 70 | :au BufNewFile,BufRead *.html so <sfile>:h/html.vim |
| 71 | |
| 72 | Here Vim expands <sfile> to the name of the file containing this line. |
| 73 | |
| 74 | When your .vimrc file is sourced twice, the autocommands will appear twice. |
| 75 | To avoid this, put this command in your .vimrc file, before defining |
| 76 | autocommands: > |
| 77 | |
| 78 | :autocmd! " Remove ALL autocommands for the current group. |
| 79 | |
| 80 | If you don't want to remove all autocommands, you can instead use a variable |
| 81 | to ensure that Vim includes the autocommands only once: > |
| 82 | |
| 83 | :if !exists("autocommands_loaded") |
| 84 | : let autocommands_loaded = 1 |
| 85 | : au ... |
| 86 | :endif |
| 87 | |
| 88 | When the [group] argument is not given, Vim uses the current group (as defined |
| 89 | with ":augroup"); otherwise, Vim uses the group defined with [group]. Note |
| 90 | that [group] must have been defined before. You cannot define a new group |
| 91 | with ":au group ..."; use ":augroup" for that. |
| 92 | |
| 93 | While testing autocommands, you might find the 'verbose' option to be useful: > |
| 94 | :set verbose=9 |
| 95 | This setting makes Vim echo the autocommands as it executes them. |
| 96 | |
| 97 | When defining an autocommand in a script, it will be able to call functions |
| 98 | local to the script and use mappings local to the script. When the event is |
| 99 | triggered and the command executed, it will run in the context of the script |
| 100 | it was defined in. This matters if |<SID>| is used in a command. |
| 101 | |
| 102 | When executing the commands, the messages from one command overwrites a |
| 103 | previous message. This is different from when executing the commands |
| 104 | manually. Mostly the screen will not scroll up, thus there is no hit-enter |
| 105 | prompt. When one command outputs two messages this can happen anyway. |
| 106 | |
| 107 | ============================================================================== |
| 108 | 3. Removing autocommands *autocmd-remove* |
| 109 | |
| 110 | :au[tocmd]! [group] {event} {pat} [nested] {cmd} |
| 111 | Remove all autocommands associated with {event} and |
| 112 | {pat}, and add the command {cmd}. See |
| 113 | |autocmd-nested| for [nested]. |
| 114 | |
| 115 | :au[tocmd]! [group] {event} {pat} |
| 116 | Remove all autocommands associated with {event} and |
| 117 | {pat}. |
| 118 | |
| 119 | :au[tocmd]! [group] * {pat} |
| 120 | Remove all autocommands associated with {pat} for all |
| 121 | events. |
| 122 | |
| 123 | :au[tocmd]! [group] {event} |
| 124 | Remove ALL autocommands for {event}. |
| 125 | |
| 126 | :au[tocmd]! [group] Remove ALL autocommands. |
| 127 | |
| 128 | When the [group] argument is not given, Vim uses the current group (as defined |
| 129 | with ":augroup"); otherwise, Vim uses the group defined with [group]. |
| 130 | |
| 131 | ============================================================================== |
| 132 | 4. Listing autocommands *autocmd-list* |
| 133 | |
| 134 | :au[tocmd] [group] {event} {pat} |
| 135 | Show the autocommands associated with {event} and |
| 136 | {pat}. |
| 137 | |
| 138 | :au[tocmd] [group] * {pat} |
| 139 | Show the autocommands associated with {pat} for all |
| 140 | events. |
| 141 | |
| 142 | :au[tocmd] [group] {event} |
| 143 | Show all autocommands for {event}. |
| 144 | |
| 145 | :au[tocmd] [group] Show all autocommands. |
| 146 | |
| 147 | If you provide the [group] argument, Vim lists only the autocommands for |
| 148 | [group]; otherwise, Vim lists the autocommands for ALL groups. Note that this |
| 149 | argument behavior differs from that for defining and removing autocommands. |
| 150 | |
| 151 | ============================================================================== |
| 152 | 5. Events *autocmd-events* *E215* *E216* |
| 153 | |
| 154 | *autocommand-events* *{event}* |
| 155 | Vim recognizes the following events. Vim ignores the case of event names |
| 156 | (e.g., you can use "BUFread" or "bufread" instead of "BufRead"). |
| 157 | |
| 158 | *BufNewFile* |
| 159 | BufNewFile When starting to edit a file that doesn't |
| 160 | exist. Can be used to read in a skeleton |
| 161 | file. |
| 162 | *BufReadPre* *E200* *E201* |
| 163 | BufReadPre When starting to edit a new buffer, before |
| 164 | reading the file into the buffer. Not used |
| 165 | if the file doesn't exist. |
| 166 | *BufRead* *BufReadPost* |
| 167 | BufRead or BufReadPost When starting to edit a new buffer, after |
| 168 | reading the file into the buffer, before |
| 169 | executing the modelines. See |BufWinEnter| |
| 170 | for when you need to do something after |
| 171 | processing the modelines. |
| 172 | This does NOT work for ":r file". Not used |
| 173 | when the file doesn't exist. Also used after |
| 174 | successfully recovering a file. |
| 175 | *BufReadCmd* |
| 176 | BufReadCmd Before starting to edit a new buffer. Should |
| 177 | read the file into the buffer. |Cmd-event| |
| 178 | *BufFilePre* |
| 179 | BufFilePre Before changing the name of the current buffer |
| 180 | with the ":file" or ":saveas" command. |
| 181 | *BufFilePost* |
| 182 | BufFilePost After changing the name of the current buffer |
| 183 | with the ":file" or ":saveas" command. |
| 184 | *FileReadPre* |
| 185 | FileReadPre Before reading a file with a ":read" command. |
| 186 | *FileReadPost* |
| 187 | FileReadPost After reading a file with a ":read" command. |
| 188 | Note that Vim sets the '[ and '] marks to the |
| 189 | first and last line of the read. This can be |
| 190 | used to operate on the lines just read. |
| 191 | *FileReadCmd* |
| 192 | FileReadCmd Before reading a file with a ":read" command. |
| 193 | Should do the reading of the file. |Cmd-event| |
| 194 | *FilterReadPre* *E135* |
| 195 | FilterReadPre Before reading a file from a filter command. |
| 196 | Vim checks the pattern against the name of |
| 197 | the current buffer, not the name of the |
| 198 | temporary file that is the output of the |
| 199 | filter command. |
| 200 | *FilterReadPost* |
| 201 | FilterReadPost After reading a file from a filter command. |
| 202 | Vim checks the pattern against the name of |
| 203 | the current buffer as with FilterReadPre. |
| 204 | *FileType* |
| 205 | FileType When the 'filetype' option has been set. |
| 206 | <afile> can be used for the name of the file |
| 207 | where this option was set, and <amatch> for |
| 208 | the new value of 'filetype'. |
| 209 | See |filetypes|. |
| 210 | *Syntax* |
| 211 | Syntax When the 'syntax' option has been set. |
| 212 | <afile> can be used for the name of the file |
| 213 | where this option was set, and <amatch> for |
| 214 | the new value of 'syntax'. |
| 215 | See |:syn-on|. |
| 216 | *StdinReadPre* |
| 217 | StdinReadPre Before reading from stdin into the buffer. |
| 218 | Only used when the "-" argument was used when |
| 219 | Vim was started |--|. |
| 220 | *StdinReadPost* |
| 221 | StdinReadPost After reading from the stdin into the buffer, |
| 222 | before executing the modelines. Only used |
| 223 | when the "-" argument was used when Vim was |
| 224 | started |--|. |
| 225 | *BufWrite* *BufWritePre* |
| 226 | BufWrite or BufWritePre Before writing the whole buffer to a file. |
| 227 | *BufWritePost* |
| 228 | BufWritePost After writing the whole buffer to a file |
| 229 | (should undo the commands for BufWritePre). |
| 230 | *BufWriteCmd* |
| 231 | BufWriteCmd Before writing the whole buffer to a file. |
| 232 | Should do the writing of the file and reset |
Bram Moolenaar | 1cd871b | 2004-12-19 22:46:22 +0000 | [diff] [blame^] | 233 | 'modified' if successful, unless '+' is in |
| 234 | 'cpo' and writing to another file |cpo-+|. |
| 235 | The buffer contents should not be changed. |
| 236 | |Cmd-event| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 237 | *FileWritePre* |
| 238 | FileWritePre Before writing to a file, when not writing the |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 239 | whole buffer. Use the '[ and '] marks for the |
| 240 | range of lines. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 241 | *FileWritePost* |
| 242 | FileWritePost After writing to a file, when not writing the |
| 243 | whole buffer. |
| 244 | *FileWriteCmd* |
| 245 | FileWriteCmd Before writing to a file, when not writing the |
| 246 | whole buffer. Should do the writing to the |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 247 | file. Should not change the buffer. Use the |
| 248 | '[ and '] marks for the range of lines. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 249 | |Cmd-event| |
| 250 | *FileAppendPre* |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 251 | FileAppendPre Before appending to a file. Use the '[ and '] |
| 252 | marks for the range of lines. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 253 | *FileAppendPost* |
| 254 | FileAppendPost After appending to a file. |
| 255 | *FileAppendCmd* |
| 256 | FileAppendCmd Before appending to a file. Should do the |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 257 | appending to the file. Use the '[ and '] |
| 258 | marks for the range of lines.|Cmd-event| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 259 | *FilterWritePre* |
| 260 | FilterWritePre Before writing a file for a filter command or |
| 261 | making a diff. |
| 262 | Vim checks the pattern against the name of |
| 263 | the current buffer, not the name of the |
| 264 | temporary file that is the output of the |
| 265 | filter command. |
| 266 | *FilterWritePost* |
| 267 | FilterWritePost After writing a file for a filter command or |
| 268 | making a diff. |
| 269 | Vim checks the pattern against the name of |
| 270 | the current buffer as with FilterWritePre. |
| 271 | *FileChangedShell* |
| 272 | FileChangedShell When Vim notices that the modification time of |
| 273 | a file has changed since editing started. |
| 274 | Also when the file attributes of the file |
| 275 | change. |timestamp| |
| 276 | Mostly triggered after executing a shell |
| 277 | command, but also with a |:checktime| command |
| 278 | or when Vim regains input focus. |
| 279 | This autocommand is triggered for each changed |
| 280 | file. It is not used when 'autoread' is set |
| 281 | and the buffer was not changed. If a |
| 282 | FileChangedShell autocommand is present the |
| 283 | warning message and prompt is not given. |
| 284 | This is useful for reloading related buffers |
| 285 | which are affected by a single command. |
| 286 | NOTE: When this autocommand is executed, the |
| 287 | current buffer "%" may be different from the |
| 288 | buffer that was changed "<afile>". |
| 289 | NOTE: The commands must not change the current |
| 290 | buffer, jump to another buffer or delete a |
| 291 | buffer. *E246* |
| 292 | NOTE: This event never nests, to avoid an |
| 293 | endless loop. This means that while executing |
| 294 | commands for the FileChangedShell event no |
| 295 | other FileChangedShell event will be |
| 296 | triggered. |
| 297 | *FileChangedRO* |
| 298 | FileChangedRO Before making the first change to a read-only |
| 299 | file. Can be used to check-out the file from |
| 300 | a source control system. Not triggered when |
| 301 | the change was caused by an autocommand. |
| 302 | WARNING: This event is triggered when making a |
| 303 | change, just before the change is applied to |
| 304 | the text. If the autocommand moves the cursor |
| 305 | the effect of the change is undefined. |
| 306 | *FocusGained* |
| 307 | FocusGained When Vim got input focus. Only for the GUI |
| 308 | version and a few console versions where this |
| 309 | can be detected. |
| 310 | *FocusLost* |
| 311 | FocusLost When Vim lost input focus. Only for the GUI |
| 312 | version and a few console versions where this |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 313 | can be detected. May also happen when a |
| 314 | dialog pops up. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 315 | *FuncUndefined* |
| 316 | FuncUndefined When a user function is used but it isn't |
| 317 | defined. Useful for defining a function only |
| 318 | when it's used. Both <amatch> and <afile> are |
| 319 | set to the name of the function. |
| 320 | *CursorHold* |
| 321 | CursorHold When the user doesn't press a key for the time |
| 322 | specified with 'updatetime'. Not re-triggered |
| 323 | until the user has pressed a key (i.e. doesn't |
| 324 | fire every 'updatetime' ms if you leave Vim to |
| 325 | make some coffee. :) See |CursorHold-example| |
| 326 | for previewing tags. |
| 327 | This event is only triggered in Normal mode. |
| 328 | Note: Interactive commands cannot be used for |
| 329 | this event. There is no hit-enter prompt, |
| 330 | the screen is updated directly (when needed). |
| 331 | Note: In the future there will probably be |
| 332 | another option to set the time. |
| 333 | Hint: to force an update of the status lines |
| 334 | use: > |
| 335 | :let &ro = &ro |
| 336 | < {only on Amiga, Unix, Win32, MSDOS and all GUI |
| 337 | versions} |
| 338 | *BufEnter* |
| 339 | BufEnter After entering a buffer. Useful for setting |
| 340 | options for a file type. Also executed when |
| 341 | starting to edit a buffer, after the |
| 342 | BufReadPost autocommands. |
| 343 | *BufLeave* |
| 344 | BufLeave Before leaving to another buffer. Also when |
| 345 | leaving or closing the current window and the |
| 346 | new current window is not for the same buffer. |
| 347 | Not used for ":qa" or ":q" when exiting Vim. |
| 348 | *BufWinEnter* |
| 349 | BufWinEnter After a buffer is displayed in a window. This |
| 350 | can be when the buffer is loaded (after |
| 351 | processing the modelines), when a hidden |
| 352 | buffer is displayed in a window (and is no |
| 353 | longer hidden) or a buffer already visible in |
| 354 | a window is also displayed in another window. |
| 355 | *BufWinLeave* |
| 356 | BufWinLeave Before a buffer is removed from a window. |
| 357 | Not when it's still visible in another window. |
| 358 | Also triggered when exiting. It's triggered |
| 359 | before BufUnload or BufHidden. |
| 360 | NOTE: When this autocommand is executed, the |
| 361 | current buffer "%" may be different from the |
| 362 | buffer being unloaded "<afile>". |
| 363 | *BufUnload* |
| 364 | BufUnload Before unloading a buffer. This is when the |
| 365 | text in the buffer is going to be freed. This |
| 366 | may be after a BufWritePost and before a |
| 367 | BufDelete. Also used for all buffers that are |
| 368 | loaded when Vim is going to exit. |
| 369 | NOTE: When this autocommand is executed, the |
| 370 | current buffer "%" may be different from the |
| 371 | buffer being unloaded "<afile>". |
| 372 | *BufHidden* |
| 373 | BufHidden Just after a buffer has become hidden. That |
| 374 | is, when there are no longer windows that show |
| 375 | the buffer, but the buffer is not unloaded or |
| 376 | deleted. Not used for ":qa" or ":q" when |
| 377 | exiting Vim. |
| 378 | NOTE: When this autocommand is executed, the |
| 379 | current buffer "%" may be different from the |
| 380 | buffer being unloaded "<afile>". |
| 381 | *BufNew* |
| 382 | BufNew Just after creating a new buffer. Also used |
| 383 | just after a buffer has been renamed. When |
| 384 | the buffer is added to the buffer list BufAdd |
| 385 | will be triggered too. |
| 386 | NOTE: When this autocommand is executed, the |
| 387 | current buffer "%" may be different from the |
| 388 | buffer being created "<afile>". |
| 389 | *BufCreate* *BufAdd* |
| 390 | BufAdd or BufCreate Just after creating a new buffer which is |
| 391 | added to the buffer list, or adding a buffer |
| 392 | to the buffer list. |
| 393 | Also used just after a buffer in the buffer |
| 394 | list has been renamed. |
| 395 | The BufCreate event is for historic reasons. |
| 396 | NOTE: When this autocommand is executed, the |
| 397 | current buffer "%" may be different from the |
| 398 | buffer being created "<afile>". |
| 399 | *BufDelete* |
| 400 | BufDelete Before deleting a buffer from the buffer list. |
| 401 | The BufUnload may be called first (if the |
| 402 | buffer was loaded). |
| 403 | Also used just before a buffer in the buffer |
| 404 | list is renamed. |
| 405 | NOTE: When this autocommand is executed, the |
| 406 | current buffer "%" may be different from the |
| 407 | buffer being deleted "<afile>". |
| 408 | *BufWipeout* |
| 409 | BufWipeout Before completely deleting a buffer. The |
| 410 | BufUnload and BufDelete events may be called |
| 411 | first (if the buffer was loaded and was in the |
| 412 | buffer list). Also used just before a buffer |
| 413 | is renamed (also when it's not in the buffer |
| 414 | list). |
| 415 | NOTE: When this autocommand is executed, the |
| 416 | current buffer "%" may be different from the |
| 417 | buffer being deleted "<afile>". |
| 418 | *WinEnter* |
| 419 | WinEnter After entering another window. Not done for |
| 420 | the first window, when Vim has just started. |
| 421 | Useful for setting the window height. |
| 422 | If the window is for another buffer, Vim |
| 423 | executes the BufEnter autocommands after the |
| 424 | WinEnter autocommands. |
| 425 | Note: When using ":split fname" the WinEnter |
| 426 | event is triggered after the split but before |
| 427 | the file "fname" is loaded. |
| 428 | *WinLeave* |
| 429 | WinLeave Before leaving a window. If the window to be |
| 430 | entered next is for a different buffer, Vim |
| 431 | executes the BufLeave autocommands before the |
| 432 | WinLeave autocommands (but not for ":new"). |
| 433 | Not used for ":qa" or ":q" when exiting Vim. |
| 434 | *CmdwinEnter* |
| 435 | CmdwinEnter After entering the command-line window. |
| 436 | Useful for setting options specifically for |
| 437 | this special type of window. This is |
| 438 | triggered _instead_ of BufEnter and WinEnter. |
| 439 | <afile> is set to a single character, |
| 440 | indicating the type of command-line. |
| 441 | |cmdwin-char| |
| 442 | *CmdwinLeave* |
| 443 | CmdwinLeave Before leaving the command-line window. |
| 444 | Useful to clean up any global setting done |
| 445 | with CmdwinEnter. This is triggered _instead_ |
| 446 | of BufLeave and WinLeave. |
| 447 | <afile> is set to a single character, |
| 448 | indicating the type of command-line. |
| 449 | |cmdwin-char| |
| 450 | *GUIEnter* |
| 451 | GUIEnter After starting the GUI successfully, and after |
| 452 | opening the window. It is triggered before |
| 453 | VimEnter when using gvim. Can be used to |
| 454 | position the window from a .gvimrc file: > |
| 455 | :autocmd GUIEnter * winpos 100 50 |
| 456 | < *VimEnter* |
| 457 | VimEnter After doing all the startup stuff, including |
| 458 | loading .vimrc files, executing the "-c cmd" |
| 459 | arguments, creating all windows and loading |
| 460 | the buffers in them. |
| 461 | *VimLeavePre* |
| 462 | VimLeavePre Before exiting Vim, just before writing the |
| 463 | .viminfo file. This is executed only once, |
| 464 | if there is a match with the name of what |
| 465 | happens to be the current buffer when exiting. |
| 466 | Mostly useful with a "*" pattern. > |
| 467 | :autocmd VimLeavePre * call CleanupStuff() |
| 468 | < To detect an abnormal exit use |v:dying|. |
| 469 | *VimLeave* |
| 470 | VimLeave Before exiting Vim, just after writing the |
| 471 | .viminfo file. Executed only once, like |
| 472 | VimLeavePre. |
| 473 | To detect an abnormal exit use |v:dying|. |
| 474 | *EncodingChanged* |
| 475 | EncodingChanged Fires off when the 'encoding' option is |
| 476 | changed. Useful to set up fonts, for example. |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 477 | *InsertEnter* |
| 478 | InsertEnter When starting Insert mode. Also for Replace |
| 479 | mode and Virtual Replace mode. The |
| 480 | |v:insertmode| variable indicates the mode. |
| 481 | Be careful not to move the cursor or do |
| 482 | anything else that the user does not expect. |
| 483 | *InsertChange* |
| 484 | InsertChange When typing <Insert> while in Insert or |
| 485 | Replace mode. The |v:insertmode| variable |
| 486 | indicates the new mode. |
| 487 | Be careful not to move the cursor or do |
| 488 | anything else that the user does not expect. |
| 489 | *InsertLeave* |
| 490 | InsertLeave When leaving Insert mode. Also when using |
| 491 | CTRL-O |i_CTRL-O|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 492 | *FileEncoding* |
| 493 | FileEncoding Obsolete. It still works and is equivalent |
| 494 | to |EncodingChanged|. |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 495 | *ColorScheme* |
| 496 | ColorScheme After loading a color scheme. |:colorscheme| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 497 | *RemoteReply* |
| 498 | RemoteReply When a reply from a Vim that functions as |
| 499 | server was received |server2client()|. |
| 500 | <amatch> is equal to the {serverid} from which |
| 501 | the reply was sent, and <afile> is the actual |
| 502 | reply string. |
| 503 | Note that even if an autocommand is defined, |
| 504 | the reply should be read with |remote_read()| |
| 505 | to consume it. |
| 506 | *TermChanged* |
| 507 | TermChanged After the value of 'term' has changed. Useful |
| 508 | for re-loading the syntax file to update the |
| 509 | colors, fonts and other terminal-dependent |
| 510 | settings. Executed for all loaded buffers. |
| 511 | *TermResponse* |
| 512 | TermResponse After the response to |t_RV| is received from |
| 513 | the terminal. The value of |v:termresponse| |
| 514 | can be used to do things depending on the |
| 515 | terminal version. |
| 516 | *UserGettingBored* |
| 517 | UserGettingBored When the user hits CTRL-C. Just kidding! :-) |
| 518 | *User* |
| 519 | User Never executed automatically. To be used for |
| 520 | autocommands that are only executed with |
| 521 | ":doautocmd". |
| 522 | |
| 523 | You can specify a comma-separated list of event names. No white space can be |
| 524 | used in this list. The command applies to all the events in the list. |
| 525 | |
| 526 | For READING FILES there are four kinds of events possible: |
| 527 | BufNewFile starting to edit a non-existent file |
| 528 | BufReadPre BufReadPost starting to edit an existing file |
| 529 | FilterReadPre FilterReadPost read the temp file with filter output |
| 530 | FileReadPre FileReadPost any other file read |
| 531 | Vim uses only one of these four kinds when reading a file. The "Pre" and |
| 532 | "Post" events are both triggered, before and after reading the file. |
| 533 | |
| 534 | Note that the autocommands for the *ReadPre events and all the Filter events |
| 535 | are not allowed to change the current buffer (you will get an error message if |
| 536 | this happens). This is to prevent the file to be read into the wrong buffer. |
| 537 | |
| 538 | Note that the 'modified' flag is reset AFTER executing the BufReadPost |
| 539 | and BufNewFile autocommands. But when the 'modified' option was set by the |
| 540 | autocommands, this doesn't happen. |
| 541 | |
| 542 | You can use the 'eventignore' option to ignore a number of events or all |
| 543 | events. |
| 544 | |
| 545 | ============================================================================== |
| 546 | 6. Patterns *autocmd-patterns* *{pat}* |
| 547 | |
| 548 | The file pattern {pat} is tested for a match against the file name in one of |
| 549 | two ways: |
| 550 | 1. When there is no '/' in the pattern, Vim checks for a match against only |
| 551 | the tail part of the file name (without its leading directory path). |
| 552 | 2. When there is a '/' in the pattern, Vim checks for a match against the |
| 553 | both short file name (as you typed it) and the full file name (after |
| 554 | expanding it to a full path and resolving symbolic links). |
| 555 | |
| 556 | Examples: > |
| 557 | :autocmd BufRead *.txt set et |
| 558 | Set the 'et' option for all text files. > |
| 559 | |
| 560 | :autocmd BufRead /vim/src/*.c set cindent |
| 561 | Set the 'cindent' option for C files in the /vim/src directory. > |
| 562 | |
| 563 | :autocmd BufRead /tmp/*.c set ts=5 |
| 564 | If you have a link from "/tmp/test.c" to "/home/nobody/vim/src/test.c", and |
| 565 | you start editing "/tmp/test.c", this autocommand will match. |
| 566 | |
| 567 | Note: To match part of a path, but not from the root directory, use a '*' as |
| 568 | the first character. Example: > |
| 569 | :autocmd BufRead */doc/*.txt set tw=78 |
| 570 | This autocommand will for example be executed for "/tmp/doc/xx.txt" and |
| 571 | "/usr/home/piet/doc/yy.txt". The number of directories does not matter here. |
| 572 | |
| 573 | |
| 574 | The file name that the pattern is matched against is after expanding |
| 575 | wildcards. Thus is you issue this command: > |
| 576 | :e $ROOTDIR/main.$EXT |
| 577 | The argument is first expanded to: > |
| 578 | /usr/root/main.py |
| 579 | Before it's matched with the pattern of the autocommand. Careful with this |
| 580 | when using events like FileReadCmd, the value of <amatch> may not be what you |
| 581 | expect. |
| 582 | |
| 583 | |
| 584 | Environment variables can be used in a pattern: > |
| 585 | :autocmd BufRead $VIMRUNTIME/doc/*.txt set expandtab |
| 586 | And ~ can be used for the home directory (if $HOME is defined): > |
| 587 | :autocmd BufWritePost ~/.vimrc so ~/.vimrc |
| 588 | :autocmd BufRead ~archive/* set readonly |
| 589 | The environment variable is expanded when the autocommand is defined, not when |
| 590 | the autocommand is executed. This is different from the command! |
| 591 | |
| 592 | *file-pattern* |
| 593 | The pattern is interpreted like mostly used in file names: |
| 594 | * matches any sequence of characters |
| 595 | ? matches any single character |
| 596 | \? matches a '?' |
| 597 | . matches a '.' |
| 598 | ~ matches a '~' |
| 599 | , separates patterns |
| 600 | \, matches a ',' |
| 601 | { } like \( \) in a |pattern| |
| 602 | , inside { }: like \| in a |pattern| |
| 603 | \ special meaning like in a |pattern| |
| 604 | [ch] matches 'c' or 'h' |
| 605 | [^ch] match any character but 'c' and 'h' |
| 606 | |
| 607 | Note that for all systems the '/' character is used for path separator (even |
| 608 | MS-DOS and OS/2). This was done because the backslash is difficult to use |
| 609 | in a pattern and to make the autocommands portable across different systems. |
| 610 | |
| 611 | |
| 612 | Matching with the pattern is done when an event is triggered. Changing the |
| 613 | buffer name in one of the autocommands, or even deleting the buffer, does not |
| 614 | change which autocommands will be executed. Example: > |
| 615 | |
| 616 | au BufEnter *.foo bdel |
| 617 | au BufEnter *.foo set modified |
| 618 | |
| 619 | This will delete the current buffer and then set 'modified' in what has become |
| 620 | the current buffer instead. Vim doesn't take into account that "*.foo" |
| 621 | doesn't match with that buffer name. It matches "*.foo" with the name of the |
| 622 | buffer at the moment the event was triggered. |
| 623 | |
| 624 | ============================================================================== |
| 625 | 7. Groups *autocmd-groups* |
| 626 | |
| 627 | Autocommands can be put together in a group. This is useful for removing or |
| 628 | executing a group of autocommands. For example, all the autocommands for |
| 629 | syntax highlighting are put in the "highlight" group, to be able to execute |
| 630 | ":doautoall highlight BufRead" when the GUI starts. |
| 631 | |
| 632 | When no specific group is selected, Vim uses the default group. The default |
| 633 | group does not have a name. You cannot execute the autocommands from the |
| 634 | default group separately; you can execute them only by executing autocommands |
| 635 | for all groups. |
| 636 | |
| 637 | Normally, when executing autocommands automatically, Vim uses the autocommands |
| 638 | for all groups. The group only matters when executing autocommands with |
| 639 | ":doautocmd" or ":doautoall", or when defining or deleting autocommands. |
| 640 | |
| 641 | The group name can contain any characters except white space. The group name |
| 642 | "end" is reserved (also in uppercase). |
| 643 | |
| 644 | The group name is case sensitive. Note that this is different from the event |
| 645 | name! |
| 646 | |
| 647 | *:aug* *:augroup* |
| 648 | :aug[roup] {name} Define the autocmd group name for the |
| 649 | following ":autocmd" commands. The name "end" |
| 650 | or "END" selects the default group. |
| 651 | |
| 652 | *:augroup-delete* *E367* |
| 653 | :aug[roup]! {name} Delete the autocmd group {name}. Don't use |
| 654 | this if there is still an autocommand using |
| 655 | this group! This is not checked. |
| 656 | |
| 657 | To enter autocommands for a specific group, use this method: |
| 658 | 1. Select the group with ":augroup {name}". |
| 659 | 2. Delete any old autocommands with ":au!". |
| 660 | 3. Define the autocommands. |
| 661 | 4. Go back to the default group with "augroup END". |
| 662 | |
| 663 | Example: > |
| 664 | :augroup uncompress |
| 665 | : au! |
| 666 | : au BufEnter *.gz %!gunzip |
| 667 | :augroup END |
| 668 | |
| 669 | This prevents having the autocommands defined twice (e.g., after sourcing the |
| 670 | .vimrc file again). |
| 671 | |
| 672 | ============================================================================== |
| 673 | 8. Executing autocommands *autocmd-execute* |
| 674 | |
| 675 | Vim can also execute Autocommands non-automatically. This is useful if you |
| 676 | have changed autocommands, or when Vim has executed the wrong autocommands |
| 677 | (e.g., the file pattern match was wrong). |
| 678 | |
| 679 | Note that the 'eventignore' option applies here too. Events listed in this |
| 680 | option will not cause any commands to be executed. |
| 681 | |
| 682 | *:do* *:doau* *:doautocmd* *E217* |
| 683 | :do[autocmd] [group] {event} [fname] |
| 684 | Apply the autocommands matching [fname] (default: |
| 685 | current file name) for {event} to the current buffer. |
| 686 | You can use this when the current file name does not |
| 687 | match the right pattern, after changing settings, or |
| 688 | to execute autocommands for a certain event. |
| 689 | It's possible to use this inside an autocommand too, |
| 690 | so you can base the autocommands for one extension on |
| 691 | another extension. Example: > |
| 692 | :au Bufenter *.cpp so ~/.vimrc_cpp |
| 693 | :au Bufenter *.cpp doau BufEnter x.c |
| 694 | < Be careful to avoid endless loops. See |
| 695 | |autocmd-nested|. |
| 696 | |
| 697 | When the [group] argument is not given, Vim executes |
| 698 | the autocommands for all groups. When the [group] |
| 699 | argument is included, Vim executes only the matching |
| 700 | autocommands for that group. Note: if you use an |
| 701 | undefined group name, Vim gives you an error message. |
| 702 | |
| 703 | *:doautoa* *:doautoall* |
| 704 | :doautoa[ll] [group] {event} [fname] |
| 705 | Like ":doautocmd", but apply the autocommands to each |
| 706 | loaded buffer. Note that {fname} is used to select |
| 707 | the autocommands, not the buffers to which they are |
| 708 | applied. |
| 709 | Careful: Don't use this for autocommands that delete a |
| 710 | buffer, change to another buffer or change the |
| 711 | contents of a buffer; the result is unpredictable. |
| 712 | This command is intended for autocommands that set |
| 713 | options, change highlighting, and things like that. |
| 714 | |
| 715 | ============================================================================== |
| 716 | 9. Using autocommands *autocmd-use* |
| 717 | |
| 718 | For WRITING FILES there are four possible sets of events. Vim uses only one |
| 719 | of these sets for a write command: |
| 720 | |
| 721 | BufWriteCmd BufWritePre BufWritePost writing the whole buffer |
| 722 | FilterWritePre FilterWritePost writing to filter temp file |
| 723 | FileAppendCmd FileAppendPre FileAppendPost appending to a file |
| 724 | FileWriteCmd FileWritePre FileWritePost any other file write |
| 725 | |
| 726 | When there is a matching "*Cmd" autocommand, it is assumed it will do the |
| 727 | writing. No further writing is done and the other events are not triggered. |
| 728 | |Cmd-event| |
| 729 | |
| 730 | Note that the *WritePost commands should undo any changes to the buffer that |
| 731 | were caused by the *WritePre commands; otherwise, writing the file will have |
| 732 | the side effect of changing the buffer. |
| 733 | |
| 734 | Before executing the autocommands, the buffer from which the lines are to be |
| 735 | written temporarily becomes the current buffer. Unless the autocommands |
| 736 | change the current buffer or delete the previously current buffer, the |
| 737 | previously current buffer is made the current buffer again. |
| 738 | |
| 739 | The *WritePre and *AppendPre autocommands must not delete the buffer from |
| 740 | which the lines are to be written. |
| 741 | |
| 742 | The '[ and '] marks have a special position: |
| 743 | - Before the *ReadPre event the '[ mark is set to the line just above where |
| 744 | the new lines will be inserted. |
| 745 | - Before the *ReadPost event the '[ mark is set to the first line that was |
| 746 | just read, the '] mark to the last line. |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 747 | - Before executing the *WriteCmd, *WritePre and *AppendPre autocommands the '[ |
| 748 | mark is set to the first line that will be written, the '] mark to the last |
| 749 | line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 750 | Careful: '[ and '] change when using commands that change the buffer. |
| 751 | |
| 752 | In commands which expect a file name, you can use "<afile>" for the file name |
| 753 | that is being read |:<afile>| (you can also use "%" for the current file |
| 754 | name). "<abuf>" can be used for the buffer number of the currently effective |
| 755 | buffer. This also works for buffers that doesn't have a name. But it doesn't |
| 756 | work for files without a buffer (e.g., with ":r file"). |
| 757 | |
| 758 | *gzip-example* |
| 759 | Examples for reading and writing compressed files: > |
| 760 | :augroup gzip |
| 761 | : autocmd! |
| 762 | : autocmd BufReadPre,FileReadPre *.gz set bin |
| 763 | : autocmd BufReadPost,FileReadPost *.gz '[,']!gunzip |
| 764 | : autocmd BufReadPost,FileReadPost *.gz set nobin |
| 765 | : autocmd BufReadPost,FileReadPost *.gz execute ":doautocmd BufReadPost " . expand("%:r") |
| 766 | : autocmd BufWritePost,FileWritePost *.gz !mv <afile> <afile>:r |
| 767 | : autocmd BufWritePost,FileWritePost *.gz !gzip <afile>:r |
| 768 | |
| 769 | : autocmd FileAppendPre *.gz !gunzip <afile> |
| 770 | : autocmd FileAppendPre *.gz !mv <afile>:r <afile> |
| 771 | : autocmd FileAppendPost *.gz !mv <afile> <afile>:r |
| 772 | : autocmd FileAppendPost *.gz !gzip <afile>:r |
| 773 | :augroup END |
| 774 | |
| 775 | The "gzip" group is used to be able to delete any existing autocommands with |
| 776 | ":autocmd!", for when the file is sourced twice. |
| 777 | |
| 778 | ("<afile>:r" is the file name without the extension, see |:_%:|) |
| 779 | |
| 780 | The commands executed for the BufNewFile, BufRead/BufReadPost, BufWritePost, |
| 781 | FileAppendPost and VimLeave events do not set or reset the changed flag of the |
| 782 | buffer. When you decompress the buffer with the BufReadPost autocommands, you |
| 783 | can still exit with ":q". When you use ":undo" in BufWritePost to undo the |
| 784 | changes made by BufWritePre commands, you can still do ":q" (this also makes |
| 785 | "ZZ" work). If you do want the buffer to be marked as modified, set the |
| 786 | 'modified' option. |
| 787 | |
| 788 | To execute Normal mode commands from an autocommand, use the ":normal" |
| 789 | command. Use with care! If the Normal mode command is not finished, the user |
| 790 | needs to type characters (e.g., after ":normal m" you need to type a mark |
| 791 | name). |
| 792 | |
| 793 | If you want the buffer to be unmodified after changing it, reset the |
| 794 | 'modified' option. This makes it possible to exit the buffer with ":q" |
| 795 | instead of ":q!". |
| 796 | |
| 797 | *autocmd-nested* *E218* |
| 798 | By default, autocommands do not nest. If you use ":e" or ":w" in an |
| 799 | autocommand, Vim does not execute the BufRead and BufWrite autocommands for |
| 800 | those commands. If you do want this, use the "nested" flag for those commands |
| 801 | in which you want nesting. For example: > |
| 802 | :autocmd FileChangedShell *.c nested e! |
| 803 | The nesting is limited to 10 levels to get out of recursive loops. |
| 804 | |
| 805 | It's possible to use the ":au" command in an autocommand. This can be a |
| 806 | self-modifying command! This can be useful for an autocommand that should |
| 807 | execute only once. |
| 808 | |
| 809 | There is currently no way to disable the autocommands. If you want to write a |
| 810 | file without executing the autocommands for that type of file, write it under |
| 811 | another name and rename it with a shell command. In some situations you can |
| 812 | use the 'eventignore' option. |
| 813 | |
| 814 | Note: When reading a file (with ":read file" or with a filter command) and the |
| 815 | last line in the file does not have an <EOL>, Vim remembers this. At the next |
| 816 | write (with ":write file" or with a filter command), if the same line is |
| 817 | written again as the last line in a file AND 'binary' is set, Vim does not |
| 818 | supply an <EOL>. This makes a filter command on the just read lines write the |
| 819 | same file as was read, and makes a write command on just filtered lines write |
| 820 | the same file as was read from the filter. For example, another way to write |
| 821 | a compressed file: > |
| 822 | |
| 823 | :autocmd FileWritePre *.gz set bin|'[,']!gzip |
| 824 | :autocmd FileWritePost *.gz undo|set nobin |
| 825 | < |
| 826 | *autocommand-pattern* |
| 827 | You can specify multiple patterns, separated by commas. Here are some |
| 828 | examples: > |
| 829 | |
| 830 | :autocmd BufRead * set tw=79 nocin ic infercase fo=2croq |
| 831 | :autocmd BufRead .letter set tw=72 fo=2tcrq |
| 832 | :autocmd BufEnter .letter set dict=/usr/lib/dict/words |
| 833 | :autocmd BufLeave .letter set dict= |
| 834 | :autocmd BufRead,BufNewFile *.c,*.h set tw=0 cin noic |
| 835 | :autocmd BufEnter *.c,*.h abbr FOR for (i = 0; i < 3; ++i)<CR>{<CR>}<Esc>O |
| 836 | :autocmd BufLeave *.c,*.h unabbr FOR |
| 837 | |
| 838 | For makefiles (makefile, Makefile, imakefile, makefile.unix, etc.): > |
| 839 | |
| 840 | :autocmd BufEnter ?akefile* set include=^s\=include |
| 841 | :autocmd BufLeave ?akefile* set include& |
| 842 | |
| 843 | To always start editing C files at the first function: > |
| 844 | |
| 845 | :autocmd BufRead *.c,*.h 1;/^{ |
| 846 | |
| 847 | Without the "1;" above, the search would start from wherever the file was |
| 848 | entered, rather than from the start of the file. |
| 849 | |
| 850 | *skeleton* *template* |
| 851 | To read a skeleton (template) file when opening a new file: > |
| 852 | |
| 853 | :autocmd BufNewFile *.c 0r ~/vim/skeleton.c |
| 854 | :autocmd BufNewFile *.h 0r ~/vim/skeleton.h |
| 855 | :autocmd BufNewFile *.java 0r ~/vim/skeleton.java |
| 856 | |
| 857 | To insert the current date and time in a *.html file when writing it: > |
| 858 | |
| 859 | :autocmd BufWritePre,FileWritePre *.html ks|call LastMod()|'s |
| 860 | :fun LastMod() |
| 861 | : if line("$") > 20 |
| 862 | : let l = 20 |
| 863 | : else |
| 864 | : let l = line("$") |
| 865 | : endif |
| 866 | : exe "1," . l . "g/Last modified: /s/Last modified: .*/Last modified: " . |
| 867 | : \ strftime("%Y %b %d") |
| 868 | :endfun |
| 869 | |
| 870 | You need to have a line "Last modified: <date time>" in the first 20 lines |
| 871 | of the file for this to work. Vim replaces <date time> (and anything in the |
| 872 | same line after it) with the current date and time. Explanation: |
| 873 | ks mark current position with mark 's' |
| 874 | call LastMod() call the LastMod() function to do the work |
| 875 | 's return the cursor to the old position |
| 876 | The LastMod() function checks if the file is shorter than 20 lines, and then |
| 877 | uses the ":g" command to find lines that contain "Last modified: ". For those |
| 878 | lines the ":s" command is executed to replace the existing date with the |
| 879 | current one. The ":execute" command is used to be able to use an expression |
| 880 | for the ":g" and ":s" commands. The date is obtained with the strftime() |
| 881 | function. You can change its argument to get another date string. |
| 882 | |
| 883 | When entering :autocmd on the command-line, completion of events and command |
| 884 | names may be done (with <Tab>, CTRL-D, etc.) where appropriate. |
| 885 | |
| 886 | Vim executes all matching autocommands in the order that you specify them. |
| 887 | It is recommended that your first autocommand be used for all files by using |
| 888 | "*" as the file pattern. This means that you can define defaults you like |
| 889 | here for any settings, and if there is another matching autocommand it will |
| 890 | override these. But if there is no other matching autocommand, then at least |
| 891 | your default settings are recovered (if entering this file from another for |
| 892 | which autocommands did match). Note that "*" will also match files starting |
| 893 | with ".", unlike Unix shells. |
| 894 | |
| 895 | *autocmd-searchpat* |
| 896 | Autocommands do not change the current search patterns. Vim saves the current |
| 897 | search patterns before executing autocommands then restores them after the |
| 898 | autocommands finish. This means that autocommands do not affect the strings |
| 899 | highlighted with the 'hlsearch' option. Within autocommands, you can still |
| 900 | use search patterns normally, e.g., with the "n" command. |
| 901 | If you want an autocommand to set the search pattern, such that it is used |
| 902 | after the autocommand finishes, use the ":let @/ =" command. |
| 903 | The search-highlighting cannot be switched off with ":nohlsearch" in an |
| 904 | autocommand. Use the 'h' flag in the 'viminfo' option to disable search- |
| 905 | highlighting when starting Vim. |
| 906 | |
| 907 | *Cmd-event* |
| 908 | When using one of the "*Cmd" events, the matching autocommands are expected to |
| 909 | do the file reading or writing. This can be used when working with a special |
| 910 | kind of file, for example on a remote system. |
| 911 | CAREFUL: If you use these events in a wrong way, it may have the effect of |
| 912 | making it impossible to read or write the matching files! Make sure you test |
| 913 | your autocommands properly. Best is to use a pattern that will never match a |
| 914 | normal file name, for example "ftp://*". |
| 915 | |
| 916 | When defining a BufReadCmd it will be difficult for Vim to recover a crashed |
| 917 | editing session. When recovering from the original file, Vim reads only those |
| 918 | parts of a file that are not found in the swap file. Since that is not |
| 919 | possible with a BufReadCmd, use the |:preserve| command to make sure the |
| 920 | original file isn't needed for recovery. You might want to do this only when |
| 921 | you expect the file to be modified. |
| 922 | |
| 923 | The |v:cmdarg| variable holds the "++enc=" and "++ff=" argument that are |
| 924 | effective. These should be used for the command that reads/writes the file. |
| 925 | The |v:cmdbang| variable is one when "!" was used, zero otherwise. |
| 926 | |
| 927 | See the $VIMRUNTIME/plugin/netrw.vim for examples. |
| 928 | |
| 929 | vim:tw=78:ts=8:ft=help:norl: |