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