blob: 087e31a1f563b9a67bd77a0eb728cc7974783fd3 [file] [log] [blame]
Bram Moolenaar2a953fc2019-01-26 17:41:47 +01001*autocmd.txt* For Vim version 8.1. Last change: 2019 Jan 19
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
Bram Moolenaar675e8d62018-06-24 20:42:01 +02007Automatic commands *autocommand* *autocommands*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008
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 Moolenaarb3480382005-12-11 21:33:32 +00002111. Disabling autocommands |autocmd-disable|
Bram Moolenaar071d4272004-06-13 20:20:40 +000022
23{Vi does not have any of these commands}
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
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
Bram Moolenaar72540672018-02-09 22:00:53 +010035 *E203* *E204* *E143* *E855* *E937* *E952*
Bram Moolenaar071d4272004-06-13 20:20:40 +000036WARNING: 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000054 *:au* *:autocmd*
55:au[tocmd] [group] {event} {pat} [nested] {cmd}
56 Add {cmd} to the list of commands that Vim will
57 execute automatically on {event} for a file matching
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010058 {pat} |autocmd-patterns|.
Bram Moolenaar98ef2332018-03-18 14:44:37 +010059 Note: A quote character is seen as argument to the
60 :autocmd and won't start a comment.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010061 Vim always adds the {cmd} after existing autocommands,
62 so that the autocommands execute in the order in which
63 they were given. See |autocmd-nested| for [nested].
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000065The special pattern <buffer> or <buffer=N> defines a buffer-local autocommand.
66See |autocmd-buflocal|.
67
Bram Moolenaare99e8442016-07-26 20:43:40 +020068Note: The ":autocmd" command can only be followed by another command when the
69'|' appears before {cmd}. This works: >
70 :augroup mine | au! BufRead | augroup END
71But this sees "augroup" as part of the defined command: >
Bram Moolenaarb0d45e72017-11-05 18:19:24 +010072 :augroup mine | au! BufRead * | augroup END
Bram Moolenaare99e8442016-07-26 20:43:40 +020073 :augroup mine | au BufRead * set tw=70 | augroup END
Bram Moolenaarb0d45e72017-11-05 18:19:24 +010074Instead you can put the group name into the command: >
75 :au! mine BufRead *
76 :au mine BufRead * set tw=70
77Or use `:execute`: >
78 :augroup mine | exe "au! BufRead *" | augroup END
79 :augroup mine | exe "au BufRead * set tw=70" | augroup END
Bram Moolenaare99e8442016-07-26 20:43:40 +020080
Bram Moolenaar071d4272004-06-13 20:20:40 +000081Note that special characters (e.g., "%", "<cword>") in the ":autocmd"
82arguments are not expanded when the autocommand is defined. These will be
83expanded when the Event is recognized, and the {cmd} is executed. The only
84exception is that "<sfile>" is expanded when the autocmd is defined. Example:
85>
86 :au BufNewFile,BufRead *.html so <sfile>:h/html.vim
87
88Here Vim expands <sfile> to the name of the file containing this line.
89
Bram Moolenaar2ec618c2016-10-01 14:47:05 +020090`:autocmd` adds to the list of autocommands regardless of whether they are
91already present. When your .vimrc file is sourced twice, the autocommands
92will appear twice. To avoid this, define your autocommands in a group, so
93that you can easily clear them: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
Bram Moolenaar2ec618c2016-10-01 14:47:05 +020095 augroup vimrc
Bram Moolenaar98ef2332018-03-18 14:44:37 +010096 " Remove all vimrc autocommands
97 autocmd!
Bram Moolenaar2ec618c2016-10-01 14:47:05 +020098 au BufNewFile,BufRead *.html so <sfile>:h/html.vim
99 augroup END
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100
101If you don't want to remove all autocommands, you can instead use a variable
102to ensure that Vim includes the autocommands only once: >
103
104 :if !exists("autocommands_loaded")
105 : let autocommands_loaded = 1
106 : au ...
107 :endif
108
109When the [group] argument is not given, Vim uses the current group (as defined
110with ":augroup"); otherwise, Vim uses the group defined with [group]. Note
111that [group] must have been defined before. You cannot define a new group
112with ":au group ..."; use ":augroup" for that.
113
114While testing autocommands, you might find the 'verbose' option to be useful: >
115 :set verbose=9
116This setting makes Vim echo the autocommands as it executes them.
117
118When defining an autocommand in a script, it will be able to call functions
119local to the script and use mappings local to the script. When the event is
120triggered and the command executed, it will run in the context of the script
121it was defined in. This matters if |<SID>| is used in a command.
122
Bram Moolenaar446cb832008-06-24 21:56:24 +0000123When executing the commands, the message from one command overwrites a
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124previous message. This is different from when executing the commands
125manually. Mostly the screen will not scroll up, thus there is no hit-enter
126prompt. When one command outputs two messages this can happen anyway.
127
128==============================================================================
1293. Removing autocommands *autocmd-remove*
130
131:au[tocmd]! [group] {event} {pat} [nested] {cmd}
132 Remove all autocommands associated with {event} and
133 {pat}, and add the command {cmd}. See
134 |autocmd-nested| for [nested].
135
136:au[tocmd]! [group] {event} {pat}
137 Remove all autocommands associated with {event} and
138 {pat}.
139
140:au[tocmd]! [group] * {pat}
141 Remove all autocommands associated with {pat} for all
142 events.
143
144:au[tocmd]! [group] {event}
145 Remove ALL autocommands for {event}.
Bram Moolenaar2ec618c2016-10-01 14:47:05 +0200146 Warning: You should not do this without a group for
147 |BufRead| and other common events, it can break
148 plugins, syntax highlighting, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
150:au[tocmd]! [group] Remove ALL autocommands.
Bram Moolenaar98ef2332018-03-18 14:44:37 +0100151 Note: a quote will be seen as argument to the :autocmd
152 and won't start a comment.
Bram Moolenaar2ec618c2016-10-01 14:47:05 +0200153 Warning: You should normally not do this without a
154 group, it breaks plugins, syntax highlighting, etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155
156When the [group] argument is not given, Vim uses the current group (as defined
157with ":augroup"); otherwise, Vim uses the group defined with [group].
158
159==============================================================================
1604. Listing autocommands *autocmd-list*
161
162:au[tocmd] [group] {event} {pat}
163 Show the autocommands associated with {event} and
164 {pat}.
165
166:au[tocmd] [group] * {pat}
167 Show the autocommands associated with {pat} for all
168 events.
169
170:au[tocmd] [group] {event}
171 Show all autocommands for {event}.
172
173:au[tocmd] [group] Show all autocommands.
174
175If you provide the [group] argument, Vim lists only the autocommands for
176[group]; otherwise, Vim lists the autocommands for ALL groups. Note that this
177argument behavior differs from that for defining and removing autocommands.
178
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000179In order to list buffer-local autocommands, use a pattern in the form <buffer>
180or <buffer=N>. See |autocmd-buflocal|.
181
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000182 *:autocmd-verbose*
183When 'verbose' is non-zero, listing an autocommand will also display where it
184was last defined. Example: >
185
186 :verbose autocmd BufEnter
187 FileExplorer BufEnter
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000188 * call s:LocalBrowse(expand("<amatch>"))
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000189 Last set from /usr/share/vim/vim-7.0/plugin/NetrwPlugin.vim
190<
191See |:verbose-cmd| for more information.
192
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193==============================================================================
1945. Events *autocmd-events* *E215* *E216*
195
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000196You can specify a comma-separated list of event names. No white space can be
197used in this list. The command applies to all the events in the list.
198
199For READING FILES there are four kinds of events possible:
200 BufNewFile starting to edit a non-existent file
201 BufReadPre BufReadPost starting to edit an existing file
202 FilterReadPre FilterReadPost read the temp file with filter output
203 FileReadPre FileReadPost any other file read
204Vim uses only one of these four kinds when reading a file. The "Pre" and
205"Post" events are both triggered, before and after reading the file.
206
207Note that the autocommands for the *ReadPre events and all the Filter events
208are not allowed to change the current buffer (you will get an error message if
209this happens). This is to prevent the file to be read into the wrong buffer.
210
211Note that the 'modified' flag is reset AFTER executing the BufReadPost
212and BufNewFile autocommands. But when the 'modified' option was set by the
213autocommands, this doesn't happen.
214
215You can use the 'eventignore' option to ignore a number of events or all
216events.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 *autocommand-events* *{event}*
218Vim recognizes the following events. Vim ignores the case of event names
219(e.g., you can use "BUFread" or "bufread" instead of "BufRead").
220
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000221First an overview by function with a short explanation. Then the list
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000222alphabetically with full explanations |autocmd-events-abc|.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000223
224Name triggered by ~
225
226 Reading
227|BufNewFile| starting to edit a file that doesn't exist
228|BufReadPre| starting to edit a new buffer, before reading the file
229|BufRead| starting to edit a new buffer, after reading the file
230|BufReadPost| starting to edit a new buffer, after reading the file
231|BufReadCmd| before starting to edit a new buffer |Cmd-event|
232
233|FileReadPre| before reading a file with a ":read" command
234|FileReadPost| after reading a file with a ":read" command
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000235|FileReadCmd| before reading a file with a ":read" command |Cmd-event|
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000236
237|FilterReadPre| before reading a file from a filter command
238|FilterReadPost| after reading a file from a filter command
239
240|StdinReadPre| before reading from stdin into the buffer
241|StdinReadPost| After reading from the stdin into the buffer
242
243 Writing
244|BufWrite| starting to write the whole buffer to a file
245|BufWritePre| starting to write the whole buffer to a file
246|BufWritePost| after writing the whole buffer to a file
247|BufWriteCmd| before writing the whole buffer to a file |Cmd-event|
248
249|FileWritePre| starting to write part of a buffer to a file
250|FileWritePost| after writing part of a buffer to a file
251|FileWriteCmd| before writing part of a buffer to a file |Cmd-event|
252
253|FileAppendPre| starting to append to a file
254|FileAppendPost| after appending to a file
255|FileAppendCmd| before appending to a file |Cmd-event|
256
257|FilterWritePre| starting to write a file for a filter command or diff
258|FilterWritePost| after writing a file for a filter command or diff
259
260 Buffers
261|BufAdd| just after adding a buffer to the buffer list
262|BufCreate| just after adding a buffer to the buffer list
263|BufDelete| before deleting a buffer from the buffer list
264|BufWipeout| before completely deleting a buffer
Bram Moolenaarb852c3e2018-03-11 16:55:36 +0100265|TerminalOpen| after a terminal buffer was created
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000266
267|BufFilePre| before changing the name of the current buffer
268|BufFilePost| after changing the name of the current buffer
269
270|BufEnter| after entering a buffer
271|BufLeave| before leaving to another buffer
272|BufWinEnter| after a buffer is displayed in a window
273|BufWinLeave| before a buffer is removed from a window
274
275|BufUnload| before unloading a buffer
276|BufHidden| just after a buffer has become hidden
277|BufNew| just after creating a new buffer
278
279|SwapExists| detected an existing swap file
280
281 Options
282|FileType| when the 'filetype' option has been set
283|Syntax| when the 'syntax' option has been set
284|EncodingChanged| after the 'encoding' option has been changed
285|TermChanged| after the value of 'term' has changed
Bram Moolenaar53744302015-07-17 17:38:22 +0200286|OptionSet| after setting any option
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000287
288 Startup and exit
289|VimEnter| after doing all the startup stuff
290|GUIEnter| after starting the GUI successfully
Bram Moolenaard09acef2012-09-21 14:54:30 +0200291|GUIFailed| after starting the GUI failed
Bram Moolenaard7afed32007-05-06 13:26:41 +0000292|TermResponse| after the terminal response to |t_RV| is received
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000293
Bram Moolenaar12a96de2018-03-11 14:44:18 +0100294|QuitPre| when using `:quit`, before deciding whether to exit
295|ExitPre| when using a command that may make Vim exit
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000296|VimLeavePre| before exiting Vim, before writing the viminfo file
297|VimLeave| before exiting Vim, after writing the viminfo file
298
299 Various
300|FileChangedShell| Vim notices that a file changed since editing started
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000301|FileChangedShellPost| After handling a file changed since editing started
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000302|FileChangedRO| before making the first change to a read-only file
303
Bram Moolenaar2c64ca12018-10-19 16:22:31 +0200304|DiffUpdated| after diffs have been updated
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100305|DirChanged| after the working directory has changed
306
Bram Moolenaara94bc432006-03-10 21:42:59 +0000307|ShellCmdPost| after executing a shell command
308|ShellFilterPost| after filtering with a shell command
309
Bram Moolenaard5005162014-08-22 23:05:54 +0200310|CmdUndefined| a user command is used but it isn't defined
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000311|FuncUndefined| a user function is used but it isn't defined
Bram Moolenaarafeb4fa2006-02-01 21:51:12 +0000312|SpellFileMissing| a spell file is used but it can't be found
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000313|SourcePre| before sourcing a Vim script
Bram Moolenaar2a953fc2019-01-26 17:41:47 +0100314|SourcePost| after sourcing a Vim script
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +0000315|SourceCmd| before sourcing a Vim script |Cmd-event|
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000316
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000317|VimResized| after the Vim window size changed
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000318|FocusGained| Vim got input focus
319|FocusLost| Vim lost input focus
320|CursorHold| the user doesn't press a key for a while
Bram Moolenaar754b5602006-02-09 23:53:20 +0000321|CursorHoldI| the user doesn't press a key for a while in Insert mode
322|CursorMoved| the cursor was moved in Normal mode
323|CursorMovedI| the cursor was moved in Insert mode
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000324
Bram Moolenaarc917da42016-07-19 22:31:36 +0200325|WinNew| after creating a new window
Bram Moolenaar12c11d52016-07-19 23:13:03 +0200326|TabNew| after creating a new tab page
327|TabClosed| after closing a tab page
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000328|WinEnter| after entering another window
329|WinLeave| before leaving a window
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000330|TabEnter| after entering another tab page
331|TabLeave| before leaving a tab page
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000332|CmdwinEnter| after entering the command-line window
333|CmdwinLeave| before leaving the command-line window
334
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100335|CmdlineChanged| after a change was made to the command-line text
336|CmdlineEnter| after the cursor moves to the command line
337|CmdlineLeave| before the cursor leaves the command line
338
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000339|InsertEnter| starting Insert mode
340|InsertChange| when typing <Insert> while in Insert or Replace mode
341|InsertLeave| when leaving Insert mode
Bram Moolenaare659c952011-05-19 17:25:41 +0200342|InsertCharPre| when a character was typed in Insert mode, before
343 inserting it
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000344
Bram Moolenaardfb18412013-12-11 18:53:29 +0100345|TextChanged| after a change was made to the text in Normal mode
346|TextChangedI| after a change was made to the text in Insert mode
Bram Moolenaar5a093432018-02-10 18:15:19 +0100347 when popup menu is not visible
348|TextChangedP| after a change was made to the text in Insert mode
349 when popup menu visible
Bram Moolenaarb477af22018-07-15 20:20:18 +0200350|TextYankPost| after text has been yanked or deleted
Bram Moolenaardfb18412013-12-11 18:53:29 +0100351
Bram Moolenaar15142e22018-04-30 22:19:58 +0200352|ColorSchemePre| before loading a color scheme
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000353|ColorScheme| after loading a color scheme
354
355|RemoteReply| a reply from a server Vim was received
356
357|QuickFixCmdPre| before a quickfix command is run
358|QuickFixCmdPost| after a quickfix command is run
359
360|SessionLoadPost| after loading a session file
361
362|MenuPopup| just before showing the popup menu
Bram Moolenaard09acef2012-09-21 14:54:30 +0200363|CompleteDone| after Insert mode completion is done
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000364
365|User| to be used in combination with ":doautocmd"
366
367
368The alphabetical list of autocommand events: *autocmd-events-abc*
369
370 *BufCreate* *BufAdd*
371BufAdd or BufCreate Just after creating a new buffer which is
372 added to the buffer list, or adding a buffer
373 to the buffer list.
374 Also used just after a buffer in the buffer
375 list has been renamed.
376 The BufCreate event is for historic reasons.
377 NOTE: When this autocommand is executed, the
378 current buffer "%" may be different from the
379 buffer being created "<afile>".
380 *BufDelete*
381BufDelete Before deleting a buffer from the buffer list.
382 The BufUnload may be called first (if the
383 buffer was loaded).
384 Also used just before a buffer in the buffer
385 list is renamed.
386 NOTE: When this autocommand is executed, the
387 current buffer "%" may be different from the
Bram Moolenaar446cb832008-06-24 21:56:24 +0000388 buffer being deleted "<afile>" and "<abuf>".
Bram Moolenaarb849e712009-06-24 15:51:37 +0000389 Don't change to another buffer, it will cause
390 problems.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000391 *BufEnter*
392BufEnter After entering a buffer. Useful for setting
393 options for a file type. Also executed when
394 starting to edit a buffer, after the
395 BufReadPost autocommands.
396 *BufFilePost*
397BufFilePost After changing the name of the current buffer
398 with the ":file" or ":saveas" command.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000399 *BufFilePre*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000400BufFilePre Before changing the name of the current buffer
401 with the ":file" or ":saveas" command.
402 *BufHidden*
403BufHidden Just after a buffer has become hidden. That
404 is, when there are no longer windows that show
405 the buffer, but the buffer is not unloaded or
406 deleted. Not used for ":qa" or ":q" when
407 exiting Vim.
408 NOTE: When this autocommand is executed, the
409 current buffer "%" may be different from the
410 buffer being unloaded "<afile>".
411 *BufLeave*
412BufLeave Before leaving to another buffer. Also when
413 leaving or closing the current window and the
414 new current window is not for the same buffer.
415 Not used for ":qa" or ":q" when exiting Vim.
416 *BufNew*
417BufNew Just after creating a new buffer. Also used
418 just after a buffer has been renamed. When
419 the buffer is added to the buffer list BufAdd
420 will be triggered too.
421 NOTE: When this autocommand is executed, the
422 current buffer "%" may be different from the
423 buffer being created "<afile>".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 *BufNewFile*
425BufNewFile When starting to edit a file that doesn't
426 exist. Can be used to read in a skeleton
427 file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 *BufRead* *BufReadPost*
429BufRead or BufReadPost When starting to edit a new buffer, after
430 reading the file into the buffer, before
431 executing the modelines. See |BufWinEnter|
432 for when you need to do something after
433 processing the modelines.
434 This does NOT work for ":r file". Not used
435 when the file doesn't exist. Also used after
436 successfully recovering a file.
Bram Moolenaar30b65812012-07-12 22:01:11 +0200437 Also triggered for the filetypedetect group
438 when executing ":filetype detect" and when
439 writing an unnamed buffer in a way that the
440 buffer gets a name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000441 *BufReadCmd*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442BufReadCmd Before starting to edit a new buffer. Should
443 read the file into the buffer. |Cmd-event|
Bram Moolenaar4770d092006-01-12 23:22:24 +0000444 *BufReadPre* *E200* *E201*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000445BufReadPre When starting to edit a new buffer, before
446 reading the file into the buffer. Not used
447 if the file doesn't exist.
448 *BufUnload*
449BufUnload Before unloading a buffer. This is when the
450 text in the buffer is going to be freed. This
451 may be after a BufWritePost and before a
452 BufDelete. Also used for all buffers that are
453 loaded when Vim is going to exit.
454 NOTE: When this autocommand is executed, the
455 current buffer "%" may be different from the
456 buffer being unloaded "<afile>".
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200457 Don't change to another buffer or window, it
458 will cause problems!
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +0200459 When exiting and v:dying is 2 or more this
460 event is not triggered.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000461 *BufWinEnter*
462BufWinEnter After a buffer is displayed in a window. This
463 can be when the buffer is loaded (after
Bram Moolenaar446cb832008-06-24 21:56:24 +0000464 processing the modelines) or when a hidden
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000465 buffer is displayed in a window (and is no
Bram Moolenaar446cb832008-06-24 21:56:24 +0000466 longer hidden).
467 Does not happen for |:split| without
468 arguments, since you keep editing the same
469 buffer, or ":split" with a file that's already
Bram Moolenaarc236c162008-07-13 17:41:49 +0000470 open in a window, because it re-uses an
471 existing buffer. But it does happen for a
472 ":split" with the name of the current buffer,
473 since it reloads that buffer.
Bram Moolenaar606cb8b2018-05-03 20:40:20 +0200474 Does not happen for a terminal window, because
475 it starts in Terminal-Job mode and Normal mode
476 commands won't work. Use |TerminalOpen| instead.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000477 *BufWinLeave*
478BufWinLeave Before a buffer is removed from a window.
479 Not when it's still visible in another window.
480 Also triggered when exiting. It's triggered
481 before BufUnload or BufHidden.
482 NOTE: When this autocommand is executed, the
483 current buffer "%" may be different from the
484 buffer being unloaded "<afile>".
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +0200485 When exiting and v:dying is 2 or more this
486 event is not triggered.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000487 *BufWipeout*
488BufWipeout Before completely deleting a buffer. The
489 BufUnload and BufDelete events may be called
490 first (if the buffer was loaded and was in the
491 buffer list). Also used just before a buffer
492 is renamed (also when it's not in the buffer
493 list).
494 NOTE: When this autocommand is executed, the
495 current buffer "%" may be different from the
496 buffer being deleted "<afile>".
Bram Moolenaarb849e712009-06-24 15:51:37 +0000497 Don't change to another buffer, it will cause
498 problems.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 *BufWrite* *BufWritePre*
500BufWrite or BufWritePre Before writing the whole buffer to a file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501 *BufWriteCmd*
502BufWriteCmd Before writing the whole buffer to a file.
503 Should do the writing of the file and reset
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000504 'modified' if successful, unless '+' is in
505 'cpo' and writing to another file |cpo-+|.
506 The buffer contents should not be changed.
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200507 When the command resets 'modified' the undo
508 information is adjusted to mark older undo
509 states as 'modified', like |:write| does.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000510 |Cmd-event|
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000511 *BufWritePost*
512BufWritePost After writing the whole buffer to a file
513 (should undo the commands for BufWritePre).
Bram Moolenaard5005162014-08-22 23:05:54 +0200514 *CmdUndefined*
515CmdUndefined When a user command is used but it isn't
516 defined. Useful for defining a command only
517 when it's used. The pattern is matched
518 against the command name. Both <amatch> and
519 <afile> are set to the name of the command.
520 NOTE: Autocompletion won't work until the
521 command is defined. An alternative is to
522 always define the user command and have it
523 invoke an autoloaded function. See |autoload|.
Bram Moolenaar153b7042018-01-31 15:48:32 +0100524 *CmdlineChanged*
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100525CmdlineChanged After a change was made to the text in the
526 command line. Be careful not to mess up
527 the command line, it may cause Vim to lock up.
Bram Moolenaar153b7042018-01-31 15:48:32 +0100528 <afile> is set to a single character,
529 indicating the type of command-line.
530 |cmdwin-char|
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200531 *CmdlineEnter*
532CmdlineEnter After moving the cursor to the command line,
533 where the user can type a command or search
534 string.
535 <afile> is set to a single character,
536 indicating the type of command-line.
537 |cmdwin-char|
538 *CmdlineLeave*
539CmdlineLeave Before leaving the command line.
Bram Moolenaar01164a62017-11-02 22:58:42 +0100540 Also when abandoning the command line, after
541 typing CTRL-C or <Esc>.
542 When the commands result in an error the
543 command line is still executed.
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +0200544 <afile> is set to a single character,
545 indicating the type of command-line.
546 |cmdwin-char|
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000547 *CmdwinEnter*
548CmdwinEnter After entering the command-line window.
549 Useful for setting options specifically for
550 this special type of window. This is
551 triggered _instead_ of BufEnter and WinEnter.
552 <afile> is set to a single character,
553 indicating the type of command-line.
554 |cmdwin-char|
555 *CmdwinLeave*
556CmdwinLeave Before leaving the command-line window.
557 Useful to clean up any global setting done
558 with CmdwinEnter. This is triggered _instead_
559 of BufLeave and WinLeave.
560 <afile> is set to a single character,
561 indicating the type of command-line.
562 |cmdwin-char|
563 *ColorScheme*
564ColorScheme After loading a color scheme. |:colorscheme|
Bram Moolenaarb95186f2013-11-28 18:53:52 +0100565 The pattern is matched against the
566 colorscheme name. <afile> can be used for the
567 name of the actual file where this option was
568 set, and <amatch> for the new colorscheme
569 name.
570
Bram Moolenaar15142e22018-04-30 22:19:58 +0200571 *ColorSchemePre*
572ColorSchemePre Before loading a color scheme. |:colorscheme|
573 Useful to setup removing things added by a
574 color scheme, before another one is loaded.
Bram Moolenaar754b5602006-02-09 23:53:20 +0000575
Bram Moolenaar30b65812012-07-12 22:01:11 +0200576 *CompleteDone*
577CompleteDone After Insert mode completion is done. Either
578 when something was completed or abandoning
579 completion. |ins-completion|
Bram Moolenaar42a45122015-07-10 17:56:23 +0200580 The |v:completed_item| variable contains
581 information about the completed item.
Bram Moolenaar30b65812012-07-12 22:01:11 +0200582
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000583 *CursorHold*
584CursorHold When the user doesn't press a key for the time
585 specified with 'updatetime'. Not re-triggered
586 until the user has pressed a key (i.e. doesn't
587 fire every 'updatetime' ms if you leave Vim to
588 make some coffee. :) See |CursorHold-example|
589 for previewing tags.
590 This event is only triggered in Normal mode.
Bram Moolenaard7afed32007-05-06 13:26:41 +0000591 It is not triggered when waiting for a command
592 argument to be typed, or a movement after an
593 operator.
Bram Moolenaare3226be2005-12-18 22:10:00 +0000594 While recording the CursorHold event is not
595 triggered. |q|
Bram Moolenaar3a991dd2014-10-02 01:41:41 +0200596 *<CursorHold>*
597 Internally the autocommand is triggered by the
598 <CursorHold> key. In an expression mapping
599 |getchar()| may see this character.
600
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000601 Note: Interactive commands cannot be used for
602 this event. There is no hit-enter prompt,
603 the screen is updated directly (when needed).
604 Note: In the future there will probably be
605 another option to set the time.
606 Hint: to force an update of the status lines
607 use: >
608 :let &ro = &ro
609< {only on Amiga, Unix, Win32, MSDOS and all GUI
610 versions}
Bram Moolenaar754b5602006-02-09 23:53:20 +0000611 *CursorHoldI*
612CursorHoldI Just like CursorHold, but in Insert mode.
Bram Moolenaaraa3b15d2016-04-21 08:53:19 +0200613 Not triggered when waiting for another key,
614 e.g. after CTRL-V, and not when in CTRL-X mode
615 |insert_expand|.
Bram Moolenaar754b5602006-02-09 23:53:20 +0000616
617 *CursorMoved*
Bram Moolenaar52b91d82013-06-15 21:39:51 +0200618CursorMoved After the cursor was moved in Normal or Visual
619 mode. Also when the text of the cursor line
620 has been changed, e.g., with "x", "rx" or "p".
Bram Moolenaar754b5602006-02-09 23:53:20 +0000621 Not triggered when there is typeahead or when
622 an operator is pending.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000623 For an example see |match-parens|.
Bram Moolenaarbf884932013-04-05 22:26:15 +0200624 Careful: This is triggered very often, don't
625 do anything that the user does not expect or
626 that is slow.
Bram Moolenaar754b5602006-02-09 23:53:20 +0000627 *CursorMovedI*
628CursorMovedI After the cursor was moved in Insert mode.
Bram Moolenaar5302d9e2011-09-14 17:55:08 +0200629 Not triggered when the popup menu is visible.
Bram Moolenaar754b5602006-02-09 23:53:20 +0000630 Otherwise the same as CursorMoved.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000631 *EncodingChanged*
632EncodingChanged Fires off after the 'encoding' option has been
633 changed. Useful to set up fonts, for example.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 *FileAppendCmd*
635FileAppendCmd Before appending to a file. Should do the
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +0000636 appending to the file. Use the '[ and ']
637 marks for the range of lines.|Cmd-event|
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000638 *FileAppendPost*
639FileAppendPost After appending to a file.
640 *FileAppendPre*
641FileAppendPre Before appending to a file. Use the '[ and ']
642 marks for the range of lines.
643 *FileChangedRO*
644FileChangedRO Before making the first change to a read-only
645 file. Can be used to check-out the file from
646 a source control system. Not triggered when
647 the change was caused by an autocommand.
648 This event is triggered when making the first
649 change in a buffer or the first change after
Bram Moolenaar61660ea2006-04-07 21:40:07 +0000650 'readonly' was set, just before the change is
651 applied to the text.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000652 WARNING: If the autocommand moves the cursor
653 the effect of the change is undefined.
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000654 *E788*
655 It is not allowed to change to another buffer
656 here. You can reload the buffer but not edit
657 another one.
Bram Moolenaar92dff182014-02-11 19:15:50 +0100658 *E881*
659 If the number of lines changes saving for undo
660 may fail and the change will be aborted.
Bram Moolenaare8fa05b2018-09-16 15:48:06 +0200661 *DiffUpdated*
662DiffUpdated After diffs have been updated. Depending on
663 what kind of diff is being used (internal or
664 external) this can be triggered on every
665 change or when doing |:diffupdate|.
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100666 *DirChanged*
667DirChanged The working directory has changed in response
668 to the |:cd| or |:lcd| commands, or as a
669 result of the 'autochdir' option.
670 The pattern can be:
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200671 "window" to trigger on `:lcd`
Bram Moolenaarb7407d32018-02-03 17:36:27 +0100672 "global" to trigger on `:cd`
673 "auto" to trigger on 'autochdir'.
674 "drop" to trigger on editing a file
675 <afile> is set to the new directory name.
Bram Moolenaar12a96de2018-03-11 14:44:18 +0100676 *ExitPre*
677ExitPre When using `:quit`, `:wq` in a way it makes
678 Vim exit, or using `:qall`, just after
679 |QuitPre|. Can be used to close any
Bram Moolenaard2f3a8b2018-06-19 14:35:59 +0200680 non-essential window. Exiting may still be
681 cancelled if there is a modified buffer that
682 isn't automatically saved, use |VimLeavePre|
683 for really exiting.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 *FileChangedShell*
685FileChangedShell When Vim notices that the modification time of
686 a file has changed since editing started.
687 Also when the file attributes of the file
Bram Moolenaare968e362014-05-13 20:23:24 +0200688 change or when the size of the file changes.
689 |timestamp|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 Mostly triggered after executing a shell
691 command, but also with a |:checktime| command
Bram Moolenaar6aa8cea2017-06-05 14:44:35 +0200692 or when gvim regains input focus.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 This autocommand is triggered for each changed
694 file. It is not used when 'autoread' is set
695 and the buffer was not changed. If a
696 FileChangedShell autocommand is present the
697 warning message and prompt is not given.
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000698 The |v:fcs_reason| variable is set to indicate
699 what happened and |v:fcs_choice| can be used
700 to tell Vim what to do next.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 NOTE: When this autocommand is executed, the
702 current buffer "%" may be different from the
Bram Moolenaarcd5c8f82017-04-09 20:11:58 +0200703 buffer that was changed, which is in "<afile>".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 NOTE: The commands must not change the current
705 buffer, jump to another buffer or delete a
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100706 buffer. *E246* *E811*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 NOTE: This event never nests, to avoid an
708 endless loop. This means that while executing
709 commands for the FileChangedShell event no
710 other FileChangedShell event will be
711 triggered.
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000712 *FileChangedShellPost*
713FileChangedShellPost After handling a file that was changed outside
714 of Vim. Can be used to update the statusline.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000715 *FileEncoding*
716FileEncoding Obsolete. It still works and is equivalent
717 to |EncodingChanged|.
718 *FileReadCmd*
719FileReadCmd Before reading a file with a ":read" command.
720 Should do the reading of the file. |Cmd-event|
721 *FileReadPost*
722FileReadPost After reading a file with a ":read" command.
723 Note that Vim sets the '[ and '] marks to the
724 first and last line of the read. This can be
725 used to operate on the lines just read.
726 *FileReadPre*
727FileReadPre Before reading a file with a ":read" command.
728 *FileType*
Bram Moolenaard7afed32007-05-06 13:26:41 +0000729FileType When the 'filetype' option has been set. The
730 pattern is matched against the filetype.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000731 <afile> can be used for the name of the file
732 where this option was set, and <amatch> for
Bram Moolenaar74675a62017-07-15 13:53:23 +0200733 the new value of 'filetype'. Navigating to
734 another window or buffer is not allowed.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000735 See |filetypes|.
736 *FileWriteCmd*
737FileWriteCmd Before writing to a file, when not writing the
738 whole buffer. Should do the writing to the
739 file. Should not change the buffer. Use the
740 '[ and '] marks for the range of lines.
741 |Cmd-event|
742 *FileWritePost*
743FileWritePost After writing to a file, when not writing the
744 whole buffer.
745 *FileWritePre*
746FileWritePre Before writing to a file, when not writing the
747 whole buffer. Use the '[ and '] marks for the
748 range of lines.
749 *FilterReadPost*
750FilterReadPost After reading a file from a filter command.
751 Vim checks the pattern against the name of
752 the current buffer as with FilterReadPre.
753 Not triggered when 'shelltemp' is off.
754 *FilterReadPre* *E135*
755FilterReadPre Before reading a file from a filter command.
756 Vim checks the pattern against the name of
757 the current buffer, not the name of the
758 temporary file that is the output of the
759 filter command.
760 Not triggered when 'shelltemp' is off.
761 *FilterWritePost*
762FilterWritePost After writing a file for a filter command or
Bram Moolenaar4c05fa02019-01-01 15:32:17 +0100763 making a diff with an external diff (see
764 DiffUpdated for internal diff).
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000765 Vim checks the pattern against the name of
766 the current buffer as with FilterWritePre.
767 Not triggered when 'shelltemp' is off.
768 *FilterWritePre*
769FilterWritePre Before writing a file for a filter command or
Bram Moolenaar4c05fa02019-01-01 15:32:17 +0100770 making a diff with an external diff.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000771 Vim checks the pattern against the name of
772 the current buffer, not the name of the
773 temporary file that is the output of the
774 filter command.
775 Not triggered when 'shelltemp' is off.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 *FocusGained*
777FocusGained When Vim got input focus. Only for the GUI
778 version and a few console versions where this
779 can be detected.
780 *FocusLost*
781FocusLost When Vim lost input focus. Only for the GUI
782 version and a few console versions where this
Bram Moolenaar843ee412004-06-30 16:16:41 +0000783 can be detected. May also happen when a
784 dialog pops up.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 *FuncUndefined*
786FuncUndefined When a user function is used but it isn't
787 defined. Useful for defining a function only
Bram Moolenaard7afed32007-05-06 13:26:41 +0000788 when it's used. The pattern is matched
789 against the function name. Both <amatch> and
790 <afile> are set to the name of the function.
Bram Moolenaard5005162014-08-22 23:05:54 +0200791 NOTE: When writing Vim scripts a better
792 alternative is to use an autoloaded function.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000793 See |autoload-functions|.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000794 *GUIEnter*
795GUIEnter After starting the GUI successfully, and after
796 opening the window. It is triggered before
797 VimEnter when using gvim. Can be used to
798 position the window from a .gvimrc file: >
799 :autocmd GUIEnter * winpos 100 50
Bram Moolenaard7afed32007-05-06 13:26:41 +0000800< *GUIFailed*
801GUIFailed After starting the GUI failed. Vim may
802 continue to run in the terminal, if possible
803 (only on Unix and alikes, when connecting the
804 X server fails). You may want to quit Vim: >
805 :autocmd GUIFailed * qall
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000806< *InsertChange*
807InsertChange When typing <Insert> while in Insert or
808 Replace mode. The |v:insertmode| variable
809 indicates the new mode.
810 Be careful not to move the cursor or do
811 anything else that the user does not expect.
Bram Moolenaare659c952011-05-19 17:25:41 +0200812 *InsertCharPre*
813InsertCharPre When a character is typed in Insert mode,
814 before inserting the char.
815 The |v:char| variable indicates the char typed
816 and can be changed during the event to insert
817 a different character. When |v:char| is set
818 to more than one character this text is
819 inserted literally.
820 It is not allowed to change the text |textlock|.
821 The event is not triggered when 'paste' is
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100822 set. {only with the +eval feature}
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000823 *InsertEnter*
Bram Moolenaard7afed32007-05-06 13:26:41 +0000824InsertEnter Just before starting Insert mode. Also for
825 Replace mode and Virtual Replace mode. The
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000826 |v:insertmode| variable indicates the mode.
Bram Moolenaar097c9922013-05-19 21:15:15 +0200827 Be careful not to do anything else that the
828 user does not expect.
829 The cursor is restored afterwards. If you do
830 not want that set |v:char| to a non-empty
831 string.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000832 *InsertLeave*
833InsertLeave When leaving Insert mode. Also when using
834 CTRL-O |i_CTRL-O|. But not for |i_CTRL-C|.
835 *MenuPopup*
836MenuPopup Just before showing the popup menu (under the
837 right mouse button). Useful for adjusting the
838 menu for what is under the cursor or mouse
839 pointer.
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200840 The pattern is matched against one or two
841 characters representing the mode:
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000842 n Normal
843 v Visual
844 o Operator-pending
845 i Insert
Bram Moolenaar551dbcc2006-04-25 22:13:59 +0000846 c Command line
Bram Moolenaar4c5d8152018-10-19 22:36:53 +0200847 tl Terminal
Bram Moolenaar53744302015-07-17 17:38:22 +0200848 *OptionSet*
849OptionSet After setting an option. The pattern is
850 matched against the long option name.
851 The |v:option_old| variable indicates the
852 old option value, |v:option_new| variable
853 indicates the newly set value, the
854 |v:option_type| variable indicates whether
855 it's global or local scoped and |<amatch>|
856 indicates what option has been set.
857
858 Is not triggered on startup and for the 'key'
859 option for obvious reasons.
860
Bram Moolenaarf9132812015-07-21 19:19:13 +0200861 Usage example: Check for the existence of the
862 directory in the 'backupdir' and 'undodir'
863 options, create the directory if it doesn't
864 exist yet.
865
866 Note: It's a bad idea to reset an option
867 during this autocommand, this may break a
868 plugin. You can always use `:noa` to prevent
869 triggering this autocommand.
Bram Moolenaar53744302015-07-17 17:38:22 +0200870
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200871 When using |:set| in the autocommand the event
872 is not triggered again.
873
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000874 *QuickFixCmdPre*
875QuickFixCmdPre Before a quickfix command is run (|:make|,
Bram Moolenaara6557602006-02-04 22:43:20 +0000876 |:lmake|, |:grep|, |:lgrep|, |:grepadd|,
877 |:lgrepadd|, |:vimgrep|, |:lvimgrep|,
Bram Moolenaar6be7f872012-01-20 21:08:56 +0100878 |:vimgrepadd|, |:lvimgrepadd|, |:cscope|,
Bram Moolenaar84f72352012-03-11 15:57:40 +0100879 |:cfile|, |:cgetfile|, |:caddfile|, |:lfile|,
880 |:lgetfile|, |:laddfile|, |:helpgrep|,
Bram Moolenaar64d8e252016-09-06 22:12:34 +0200881 |:lhelpgrep|, |:cexpr|, |:cgetexpr|,
882 |:caddexpr|, |:cbuffer|, |:cgetbuffer|,
883 |:caddbuffer|).
Bram Moolenaarf1eeae92010-05-14 23:14:42 +0200884 The pattern is matched against the command
885 being run. When |:grep| is used but 'grepprg'
886 is set to "internal" it still matches "grep".
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000887 This command cannot be used to set the
888 'makeprg' and 'grepprg' variables.
889 If this command causes an error, the quickfix
890 command is not executed.
891 *QuickFixCmdPost*
892QuickFixCmdPost Like QuickFixCmdPre, but after a quickfix
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000893 command is run, before jumping to the first
Bram Moolenaar8ec1f852012-03-07 20:13:49 +0100894 location. For |:cfile| and |:lfile| commands
895 it is run after error file is read and before
Bram Moolenaar92dff182014-02-11 19:15:50 +0100896 moving to the first error.
Bram Moolenaar8ec1f852012-03-07 20:13:49 +0100897 See |QuickFixCmdPost-example|.
Bram Moolenaar30b65812012-07-12 22:01:11 +0200898 *QuitPre*
Bram Moolenaarac7bd632013-03-19 11:35:58 +0100899QuitPre When using `:quit`, `:wq` or `:qall`, before
900 deciding whether it closes the current window
901 or quits Vim. Can be used to close any
902 non-essential window if the current window is
903 the last ordinary window.
Bram Moolenaar12a96de2018-03-11 14:44:18 +0100904 Also see |ExitPre|.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000905 *RemoteReply*
906RemoteReply When a reply from a Vim that functions as
Bram Moolenaard7afed32007-05-06 13:26:41 +0000907 server was received |server2client()|. The
908 pattern is matched against the {serverid}.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000909 <amatch> is equal to the {serverid} from which
910 the reply was sent, and <afile> is the actual
911 reply string.
912 Note that even if an autocommand is defined,
913 the reply should be read with |remote_read()|
914 to consume it.
915 *SessionLoadPost*
916SessionLoadPost After loading the session file created using
917 the |:mksession| command.
Bram Moolenaara94bc432006-03-10 21:42:59 +0000918 *ShellCmdPost*
919ShellCmdPost After executing a shell command with |:!cmd|,
920 |:shell|, |:make| and |:grep|. Can be used to
921 check for any changed files.
922 *ShellFilterPost*
923ShellFilterPost After executing a shell command with
924 ":{range}!cmd", ":w !cmd" or ":r !cmd".
925 Can be used to check for any changed files.
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000926 *SourcePre*
927SourcePre Before sourcing a Vim script. |:source|
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +0000928 <afile> is the name of the file being sourced.
Bram Moolenaar2b618522019-01-12 13:26:03 +0100929 *SourcePost*
930SourcePost After sourcing a Vim script. |:source|
931 <afile> is the name of the file being sourced.
932 Not triggered when sourcing was interrupted.
933 Also triggered after a SourceCmd autocommand
934 was triggered.
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +0000935 *SourceCmd*
936SourceCmd When sourcing a Vim script. |:source|
937 <afile> is the name of the file being sourced.
938 The autocommand must source this file.
939 |Cmd-event|
Bram Moolenaarafeb4fa2006-02-01 21:51:12 +0000940 *SpellFileMissing*
941SpellFileMissing When trying to load a spell checking file and
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +0000942 it can't be found. The pattern is matched
943 against the language. <amatch> is the
944 language, 'encoding' also matters. See
Bram Moolenaarafeb4fa2006-02-01 21:51:12 +0000945 |spell-SpellFileMissing|.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000946 *StdinReadPost*
947StdinReadPost After reading from the stdin into the buffer,
948 before executing the modelines. Only used
949 when the "-" argument was used when Vim was
950 started |--|.
951 *StdinReadPre*
952StdinReadPre Before reading from stdin into the buffer.
953 Only used when the "-" argument was used when
954 Vim was started |--|.
955 *SwapExists*
956SwapExists Detected an existing swap file when starting
957 to edit a file. Only when it is possible to
958 select a way to handle the situation, when Vim
959 would ask the user what to do.
960 The |v:swapname| variable holds the name of
Bram Moolenaarb3480382005-12-11 21:33:32 +0000961 the swap file found, <afile> the file being
962 edited. |v:swapcommand| may contain a command
963 to be executed in the opened file.
964 The commands should set the |v:swapchoice|
965 variable to a string with one character to
966 tell Vim what should be done next:
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000967 'o' open read-only
968 'e' edit the file anyway
969 'r' recover
970 'd' delete the swap file
971 'q' quit, don't edit the file
972 'a' abort, like hitting CTRL-C
973 When set to an empty string the user will be
974 asked, as if there was no SwapExists autocmd.
Bram Moolenaarb849e712009-06-24 15:51:37 +0000975 *E812*
976 It is not allowed to change to another buffer,
977 change a buffer name or change directory
978 here.
Bram Moolenaarb5b75622018-03-09 22:22:21 +0100979 {only available with the +eval feature}
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000980 *Syntax*
Bram Moolenaard7afed32007-05-06 13:26:41 +0000981Syntax When the 'syntax' option has been set. The
982 pattern is matched against the syntax name.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +0000983 <afile> can be used for the name of the file
984 where this option was set, and <amatch> for
985 the new value of 'syntax'.
986 See |:syn-on|.
Bram Moolenaar12c11d52016-07-19 23:13:03 +0200987 *TabClosed*
988TabClosed After closing a tab page.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000989 *TabEnter*
990TabEnter Just after entering a tab page. |tab-page|
Bram Moolenaar56a907a2006-05-06 21:44:30 +0000991 After triggering the WinEnter and before
992 triggering the BufEnter event.
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000993 *TabLeave*
994TabLeave Just before leaving a tab page. |tab-page|
995 A WinLeave event will have been triggered
996 first.
Bram Moolenaarc917da42016-07-19 22:31:36 +0200997 *TabNew*
998TabNew When a tab page was created. |tab-page|
999 A WinEnter event will have been triggered
1000 first, TabEnter follows.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001001 *TermChanged*
1002TermChanged After the value of 'term' has changed. Useful
1003 for re-loading the syntax file to update the
1004 colors, fonts and other terminal-dependent
1005 settings. Executed for all loaded buffers.
Bram Moolenaarb852c3e2018-03-11 16:55:36 +01001006 *TerminalOpen*
1007TerminalOpen Just after a terminal buffer was created, with
1008 `:terminal` or |term_start()|. This event is
1009 triggered even if the buffer is created
1010 without a window, with the ++hidden option.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001011 *TermResponse*
1012TermResponse After the response to |t_RV| is received from
1013 the terminal. The value of |v:termresponse|
1014 can be used to do things depending on the
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +02001015 terminal version. Note that this event may be
1016 triggered halfway executing another event,
1017 especially if file I/O, a shell command or
1018 anything else that takes time is involved.
Bram Moolenaarbf884932013-04-05 22:26:15 +02001019 *TextChanged*
1020TextChanged After a change was made to the text in the
Bram Moolenaard09091d2019-01-17 16:07:22 +01001021 current buffer in Normal mode. That is after
1022 |b:changedtick| has changed (also when that
1023 happened before the TextChanged autocommand
1024 was defined).
Bram Moolenaarbf884932013-04-05 22:26:15 +02001025 Not triggered when there is typeahead or when
1026 an operator is pending.
1027 Careful: This is triggered very often, don't
1028 do anything that the user does not expect or
1029 that is slow.
1030 *TextChangedI*
1031TextChangedI After a change was made to the text in the
1032 current buffer in Insert mode.
1033 Not triggered when the popup menu is visible.
1034 Otherwise the same as TextChanged.
Bram Moolenaar5a093432018-02-10 18:15:19 +01001035 *TextChangedP*
1036TextChangedP After a change was made to the text in the
1037 current buffer in Insert mode, only when the
1038 popup menu is visible. Otherwise the same as
1039 TextChanged.
Bram Moolenaarf0b03c42017-12-17 17:17:07 +01001040 *TextYankPost*
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01001041TextYankPost After text has been yanked or deleted in the
1042 current buffer. The following values of
1043 |v:event| can be used to determine the operation
1044 that triggered this autocmd:
1045 operator The operation performed.
1046 regcontents Text that was stored in the
1047 register, as a list of lines,
1048 like with: >
1049 getreg(r, 1, 1)
1050< regname Name of the |register| or
1051 empty string for the unnamed
1052 register.
1053 regtype Type of the register, see
1054 |getregtype()|.
1055 Not triggered when |quote_| is used nor when
1056 called recursively.
1057 It is not allowed to change the buffer text,
1058 see |textlock|.
Bram Moolenaarb5b75622018-03-09 22:22:21 +01001059 {only when compiled with the +eval feature}
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001060 *User*
1061User Never executed automatically. To be used for
1062 autocommands that are only executed with
1063 ":doautocmd".
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001064 Note that when `:doautocmd User MyEvent` is
1065 used while there are no matching autocommands,
1066 you will get an error. If you don't want
1067 that, define a dummy autocommand yourself.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001068 *UserGettingBored*
Bram Moolenaarbf884932013-04-05 22:26:15 +02001069UserGettingBored When the user presses the same key 42 times.
1070 Just kidding! :-)
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001071 *VimEnter*
1072VimEnter After doing all the startup stuff, including
1073 loading .vimrc files, executing the "-c cmd"
1074 arguments, creating all windows and loading
1075 the buffers in them.
Bram Moolenaar14735512016-03-26 21:00:08 +01001076 Just before this event is triggered the
1077 |v:vim_did_enter| variable is set, so that you
1078 can do: >
1079 if v:vim_did_enter
1080 call s:init()
1081 else
1082 au VimEnter * call s:init()
1083 endif
1084< *VimLeave*
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001085VimLeave Before exiting Vim, just after writing the
1086 .viminfo file. Executed only once, like
1087 VimLeavePre.
1088 To detect an abnormal exit use |v:dying|.
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001089 When v:dying is 2 or more this event is not
1090 triggered.
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001091 *VimLeavePre*
1092VimLeavePre Before exiting Vim, just before writing the
1093 .viminfo file. This is executed only once,
1094 if there is a match with the name of what
1095 happens to be the current buffer when exiting.
1096 Mostly useful with a "*" pattern. >
1097 :autocmd VimLeavePre * call CleanupStuff()
1098< To detect an abnormal exit use |v:dying|.
Bram Moolenaar0e1e25f2010-05-28 21:07:08 +02001099 When v:dying is 2 or more this event is not
1100 triggered.
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +00001101 *VimResized*
1102VimResized After the Vim window was resized, thus 'lines'
1103 and/or 'columns' changed. Not when starting
1104 up though.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 *WinEnter*
1106WinEnter After entering another window. Not done for
1107 the first window, when Vim has just started.
1108 Useful for setting the window height.
1109 If the window is for another buffer, Vim
1110 executes the BufEnter autocommands after the
1111 WinEnter autocommands.
Bram Moolenaar7dda86f2018-04-20 22:36:41 +02001112 Note: For split and tabpage commands the
1113 WinEnter event is triggered after the split
1114 or tab command but before the file is loaded.
1115
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 *WinLeave*
1117WinLeave Before leaving a window. If the window to be
1118 entered next is for a different buffer, Vim
1119 executes the BufLeave autocommands before the
1120 WinLeave autocommands (but not for ":new").
1121 Not used for ":qa" or ":q" when exiting Vim.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122
Bram Moolenaar12c11d52016-07-19 23:13:03 +02001123 *WinNew*
1124WinNew When a new window was created. Not done for
Bram Moolenaar50ba5262016-09-22 22:33:02 +02001125 the first window, when Vim has just started.
Bram Moolenaar12c11d52016-07-19 23:13:03 +02001126 Before a WinEnter event.
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128==============================================================================
11296. Patterns *autocmd-patterns* *{pat}*
1130
Bram Moolenaar5a5f4592015-04-13 12:43:06 +02001131The {pat} argument can be a comma separated list. This works as if the
1132command was given with each pattern separately. Thus this command: >
1133 :autocmd BufRead *.txt,*.info set et
1134Is equivalent to: >
1135 :autocmd BufRead *.txt set et
1136 :autocmd BufRead *.info set et
1137
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138The file pattern {pat} is tested for a match against the file name in one of
1139two ways:
11401. When there is no '/' in the pattern, Vim checks for a match against only
1141 the tail part of the file name (without its leading directory path).
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010011422. When there is a '/' in the pattern, Vim checks for a match against both the
1143 short file name (as you typed it) and the full file name (after expanding
1144 it to a full path and resolving symbolic links).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001146The special pattern <buffer> or <buffer=N> is used for buffer-local
1147autocommands |autocmd-buflocal|. This pattern is not matched against the name
1148of a buffer.
1149
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150Examples: >
1151 :autocmd BufRead *.txt set et
1152Set the 'et' option for all text files. >
1153
1154 :autocmd BufRead /vim/src/*.c set cindent
1155Set the 'cindent' option for C files in the /vim/src directory. >
1156
1157 :autocmd BufRead /tmp/*.c set ts=5
1158If you have a link from "/tmp/test.c" to "/home/nobody/vim/src/test.c", and
1159you start editing "/tmp/test.c", this autocommand will match.
1160
1161Note: To match part of a path, but not from the root directory, use a '*' as
1162the first character. Example: >
1163 :autocmd BufRead */doc/*.txt set tw=78
1164This autocommand will for example be executed for "/tmp/doc/xx.txt" and
1165"/usr/home/piet/doc/yy.txt". The number of directories does not matter here.
1166
1167
1168The file name that the pattern is matched against is after expanding
Bram Moolenaar446cb832008-06-24 21:56:24 +00001169wildcards. Thus if you issue this command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 :e $ROOTDIR/main.$EXT
1171The argument is first expanded to: >
1172 /usr/root/main.py
1173Before it's matched with the pattern of the autocommand. Careful with this
1174when using events like FileReadCmd, the value of <amatch> may not be what you
1175expect.
1176
1177
1178Environment variables can be used in a pattern: >
1179 :autocmd BufRead $VIMRUNTIME/doc/*.txt set expandtab
1180And ~ can be used for the home directory (if $HOME is defined): >
1181 :autocmd BufWritePost ~/.vimrc so ~/.vimrc
1182 :autocmd BufRead ~archive/* set readonly
1183The environment variable is expanded when the autocommand is defined, not when
1184the autocommand is executed. This is different from the command!
1185
1186 *file-pattern*
1187The pattern is interpreted like mostly used in file names:
Bram Moolenaar3b1db362013-08-10 15:00:24 +02001188 * matches any sequence of characters; Unusual: includes path
Bram Moolenaar9d98fe92013-08-03 18:35:36 +02001189 separators
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 ? matches any single character
1191 \? matches a '?'
1192 . matches a '.'
1193 ~ matches a '~'
1194 , separates patterns
1195 \, matches a ','
1196 { } like \( \) in a |pattern|
1197 , inside { }: like \| in a |pattern|
Bram Moolenaara946afe2013-08-02 15:22:39 +02001198 \} literal }
1199 \{ literal {
1200 \\\{n,m\} like \{n,m} in a |pattern|
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 \ special meaning like in a |pattern|
1202 [ch] matches 'c' or 'h'
1203 [^ch] match any character but 'c' and 'h'
1204
1205Note that for all systems the '/' character is used for path separator (even
1206MS-DOS and OS/2). This was done because the backslash is difficult to use
1207in a pattern and to make the autocommands portable across different systems.
1208
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001209It is possible to use |pattern| items, but they may not work as expected,
1210because of the translation done for the above.
1211
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001212 *autocmd-changes*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213Matching with the pattern is done when an event is triggered. Changing the
1214buffer name in one of the autocommands, or even deleting the buffer, does not
1215change which autocommands will be executed. Example: >
1216
1217 au BufEnter *.foo bdel
1218 au BufEnter *.foo set modified
1219
1220This will delete the current buffer and then set 'modified' in what has become
1221the current buffer instead. Vim doesn't take into account that "*.foo"
1222doesn't match with that buffer name. It matches "*.foo" with the name of the
1223buffer at the moment the event was triggered.
1224
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001225However, buffer-local autocommands will not be executed for a buffer that has
1226been wiped out with |:bwipe|. After deleting the buffer with |:bdel| the
1227buffer actually still exists (it becomes unlisted), thus the autocommands are
1228still executed.
1229
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230==============================================================================
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000012317. Buffer-local autocommands *autocmd-buflocal* *autocmd-buffer-local*
1232 *<buffer=N>* *<buffer=abuf>* *E680*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001233
1234Buffer-local autocommands are attached to a specific buffer. They are useful
1235if the buffer does not have a name and when the name does not match a specific
1236pattern. But it also means they must be explicitly added to each buffer.
1237
1238Instead of a pattern buffer-local autocommands use one of these forms:
1239 <buffer> current buffer
1240 <buffer=99> buffer number 99
1241 <buffer=abuf> using <abuf> (only when executing autocommands)
1242 |<abuf>|
1243
1244Examples: >
1245 :au CursorHold <buffer> echo 'hold'
1246 :au CursorHold <buffer=33> echo 'hold'
Bram Moolenaar88774fd2015-08-25 19:52:04 +02001247 :au BufNewFile * au CursorHold <buffer=abuf> echo 'hold'
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001248
1249All the commands for autocommands also work with buffer-local autocommands,
1250simply use the special string instead of the pattern. Examples: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001251 :au! * <buffer> " remove buffer-local autocommands for
1252 " current buffer
1253 :au! * <buffer=33> " remove buffer-local autocommands for
1254 " buffer #33
Bram Moolenaar446cb832008-06-24 21:56:24 +00001255 :bufdo :au! CursorHold <buffer> " remove autocmd for given event for all
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001256 " buffers
1257 :au * <buffer> " list buffer-local autocommands for
1258 " current buffer
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001259
1260Note that when an autocommand is defined for the current buffer, it is stored
1261with the buffer number. Thus it uses the form "<buffer=12>", where 12 is the
1262number of the current buffer. You will see this when listing autocommands,
1263for example.
1264
1265To test for presence of buffer-local autocommands use the |exists()| function
1266as follows: >
1267 :if exists("#CursorHold#<buffer=12>") | ... | endif
1268 :if exists("#CursorHold#<buffer>") | ... | endif " for current buffer
1269
1270When a buffer is wiped out its buffer-local autocommands are also gone, of
1271course. Note that when deleting a buffer, e.g., with ":bdel", it is only
1272unlisted, the autocommands are still present. In order to see the removal of
1273buffer-local autocommands: >
1274 :set verbose=6
1275
1276It is not possible to define buffer-local autocommands for a non-existent
1277buffer.
1278
1279==============================================================================
12808. Groups *autocmd-groups*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281
1282Autocommands can be put together in a group. This is useful for removing or
1283executing a group of autocommands. For example, all the autocommands for
1284syntax highlighting are put in the "highlight" group, to be able to execute
1285":doautoall highlight BufRead" when the GUI starts.
1286
1287When no specific group is selected, Vim uses the default group. The default
1288group does not have a name. You cannot execute the autocommands from the
1289default group separately; you can execute them only by executing autocommands
1290for all groups.
1291
1292Normally, when executing autocommands automatically, Vim uses the autocommands
1293for all groups. The group only matters when executing autocommands with
1294":doautocmd" or ":doautoall", or when defining or deleting autocommands.
1295
1296The group name can contain any characters except white space. The group name
1297"end" is reserved (also in uppercase).
1298
1299The group name is case sensitive. Note that this is different from the event
1300name!
1301
1302 *:aug* *:augroup*
1303:aug[roup] {name} Define the autocmd group name for the
1304 following ":autocmd" commands. The name "end"
1305 or "END" selects the default group.
Bram Moolenaar256972a2015-12-29 19:10:25 +01001306 To avoid confusion, the name should be
1307 different from existing {event} names, as this
1308 most likely will not do what you intended.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001310 *:augroup-delete* *E367* *W19* *E936*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311:aug[roup]! {name} Delete the autocmd group {name}. Don't use
1312 this if there is still an autocommand using
Bram Moolenaarbc8801c2016-08-02 21:04:33 +02001313 this group! You will get a warning if doing
Bram Moolenaar64d8e252016-09-06 22:12:34 +02001314 it anyway. when the group is the current group
1315 you will get error E936.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316
1317To enter autocommands for a specific group, use this method:
13181. Select the group with ":augroup {name}".
13192. Delete any old autocommands with ":au!".
13203. Define the autocommands.
13214. Go back to the default group with "augroup END".
1322
1323Example: >
1324 :augroup uncompress
1325 : au!
1326 : au BufEnter *.gz %!gunzip
1327 :augroup END
1328
1329This prevents having the autocommands defined twice (e.g., after sourcing the
1330.vimrc file again).
1331
1332==============================================================================
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000013339. Executing autocommands *autocmd-execute*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334
1335Vim can also execute Autocommands non-automatically. This is useful if you
1336have changed autocommands, or when Vim has executed the wrong autocommands
1337(e.g., the file pattern match was wrong).
1338
1339Note that the 'eventignore' option applies here too. Events listed in this
1340option will not cause any commands to be executed.
1341
1342 *:do* *:doau* *:doautocmd* *E217*
Bram Moolenaar5dc62522012-02-13 00:05:22 +01001343:do[autocmd] [<nomodeline>] [group] {event} [fname]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 Apply the autocommands matching [fname] (default:
1345 current file name) for {event} to the current buffer.
1346 You can use this when the current file name does not
1347 match the right pattern, after changing settings, or
1348 to execute autocommands for a certain event.
1349 It's possible to use this inside an autocommand too,
1350 so you can base the autocommands for one extension on
1351 another extension. Example: >
Bram Moolenaarf1568ec2011-12-14 21:17:39 +01001352 :au BufEnter *.cpp so ~/.vimrc_cpp
1353 :au BufEnter *.cpp doau BufEnter x.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354< Be careful to avoid endless loops. See
1355 |autocmd-nested|.
1356
1357 When the [group] argument is not given, Vim executes
1358 the autocommands for all groups. When the [group]
1359 argument is included, Vim executes only the matching
1360 autocommands for that group. Note: if you use an
1361 undefined group name, Vim gives you an error message.
Bram Moolenaar60542ac2012-02-12 20:14:01 +01001362 *<nomodeline>*
1363 After applying the autocommands the modelines are
1364 processed, so that their settings overrule the
1365 settings from autocommands, like what happens when
1366 editing a file. This is skipped when the <nomodeline>
1367 argument is present. You probably want to use
1368 <nomodeline> for events that are not used when loading
1369 a buffer, such as |User|.
Bram Moolenaarc95a3022016-06-12 23:01:46 +02001370 Processing modelines is also skipped when no
1371 matching autocommands were executed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372
1373 *:doautoa* *:doautoall*
Bram Moolenaara61d5fb2012-02-12 00:18:58 +01001374:doautoa[ll] [<nomodeline>] [group] {event} [fname]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 Like ":doautocmd", but apply the autocommands to each
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01001376 loaded buffer. Note that [fname] is used to select
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 the autocommands, not the buffers to which they are
1378 applied.
1379 Careful: Don't use this for autocommands that delete a
1380 buffer, change to another buffer or change the
1381 contents of a buffer; the result is unpredictable.
1382 This command is intended for autocommands that set
1383 options, change highlighting, and things like that.
1384
1385==============================================================================
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +0000138610. Using autocommands *autocmd-use*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387
1388For WRITING FILES there are four possible sets of events. Vim uses only one
1389of these sets for a write command:
1390
1391BufWriteCmd BufWritePre BufWritePost writing the whole buffer
1392 FilterWritePre FilterWritePost writing to filter temp file
1393FileAppendCmd FileAppendPre FileAppendPost appending to a file
1394FileWriteCmd FileWritePre FileWritePost any other file write
1395
1396When there is a matching "*Cmd" autocommand, it is assumed it will do the
1397writing. No further writing is done and the other events are not triggered.
1398|Cmd-event|
1399
1400Note that the *WritePost commands should undo any changes to the buffer that
1401were caused by the *WritePre commands; otherwise, writing the file will have
1402the side effect of changing the buffer.
1403
1404Before executing the autocommands, the buffer from which the lines are to be
1405written temporarily becomes the current buffer. Unless the autocommands
1406change the current buffer or delete the previously current buffer, the
1407previously current buffer is made the current buffer again.
1408
1409The *WritePre and *AppendPre autocommands must not delete the buffer from
1410which the lines are to be written.
1411
1412The '[ and '] marks have a special position:
1413- Before the *ReadPre event the '[ mark is set to the line just above where
1414 the new lines will be inserted.
1415- Before the *ReadPost event the '[ mark is set to the first line that was
1416 just read, the '] mark to the last line.
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00001417- Before executing the *WriteCmd, *WritePre and *AppendPre autocommands the '[
1418 mark is set to the first line that will be written, the '] mark to the last
1419 line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420Careful: '[ and '] change when using commands that change the buffer.
1421
1422In commands which expect a file name, you can use "<afile>" for the file name
1423that is being read |:<afile>| (you can also use "%" for the current file
1424name). "<abuf>" can be used for the buffer number of the currently effective
Bram Moolenaard2f3a8b2018-06-19 14:35:59 +02001425buffer. This also works for buffers that don't have a name. But it doesn't
Bram Moolenaar071d4272004-06-13 20:20:40 +00001426work for files without a buffer (e.g., with ":r file").
1427
1428 *gzip-example*
1429Examples for reading and writing compressed files: >
1430 :augroup gzip
1431 : autocmd!
1432 : autocmd BufReadPre,FileReadPre *.gz set bin
1433 : autocmd BufReadPost,FileReadPost *.gz '[,']!gunzip
1434 : autocmd BufReadPost,FileReadPost *.gz set nobin
1435 : autocmd BufReadPost,FileReadPost *.gz execute ":doautocmd BufReadPost " . expand("%:r")
1436 : autocmd BufWritePost,FileWritePost *.gz !mv <afile> <afile>:r
1437 : autocmd BufWritePost,FileWritePost *.gz !gzip <afile>:r
1438
1439 : autocmd FileAppendPre *.gz !gunzip <afile>
1440 : autocmd FileAppendPre *.gz !mv <afile>:r <afile>
1441 : autocmd FileAppendPost *.gz !mv <afile> <afile>:r
1442 : autocmd FileAppendPost *.gz !gzip <afile>:r
1443 :augroup END
1444
1445The "gzip" group is used to be able to delete any existing autocommands with
1446":autocmd!", for when the file is sourced twice.
1447
1448("<afile>:r" is the file name without the extension, see |:_%:|)
1449
1450The commands executed for the BufNewFile, BufRead/BufReadPost, BufWritePost,
1451FileAppendPost and VimLeave events do not set or reset the changed flag of the
1452buffer. When you decompress the buffer with the BufReadPost autocommands, you
1453can still exit with ":q". When you use ":undo" in BufWritePost to undo the
1454changes made by BufWritePre commands, you can still do ":q" (this also makes
1455"ZZ" work). If you do want the buffer to be marked as modified, set the
1456'modified' option.
1457
1458To execute Normal mode commands from an autocommand, use the ":normal"
1459command. Use with care! If the Normal mode command is not finished, the user
1460needs to type characters (e.g., after ":normal m" you need to type a mark
1461name).
1462
1463If you want the buffer to be unmodified after changing it, reset the
1464'modified' option. This makes it possible to exit the buffer with ":q"
1465instead of ":q!".
1466
1467 *autocmd-nested* *E218*
1468By default, autocommands do not nest. If you use ":e" or ":w" in an
1469autocommand, Vim does not execute the BufRead and BufWrite autocommands for
1470those commands. If you do want this, use the "nested" flag for those commands
1471in which you want nesting. For example: >
1472 :autocmd FileChangedShell *.c nested e!
1473The nesting is limited to 10 levels to get out of recursive loops.
1474
1475It's possible to use the ":au" command in an autocommand. This can be a
1476self-modifying command! This can be useful for an autocommand that should
1477execute only once.
1478
Bram Moolenaarb3480382005-12-11 21:33:32 +00001479If you want to skip autocommands for one command, use the |:noautocmd| command
1480modifier or the 'eventignore' option.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001481
1482Note: When reading a file (with ":read file" or with a filter command) and the
1483last line in the file does not have an <EOL>, Vim remembers this. At the next
1484write (with ":write file" or with a filter command), if the same line is
1485written again as the last line in a file AND 'binary' is set, Vim does not
1486supply an <EOL>. This makes a filter command on the just read lines write the
1487same file as was read, and makes a write command on just filtered lines write
1488the same file as was read from the filter. For example, another way to write
1489a compressed file: >
1490
1491 :autocmd FileWritePre *.gz set bin|'[,']!gzip
1492 :autocmd FileWritePost *.gz undo|set nobin
1493<
1494 *autocommand-pattern*
1495You can specify multiple patterns, separated by commas. Here are some
1496examples: >
1497
1498 :autocmd BufRead * set tw=79 nocin ic infercase fo=2croq
1499 :autocmd BufRead .letter set tw=72 fo=2tcrq
1500 :autocmd BufEnter .letter set dict=/usr/lib/dict/words
1501 :autocmd BufLeave .letter set dict=
1502 :autocmd BufRead,BufNewFile *.c,*.h set tw=0 cin noic
1503 :autocmd BufEnter *.c,*.h abbr FOR for (i = 0; i < 3; ++i)<CR>{<CR>}<Esc>O
1504 :autocmd BufLeave *.c,*.h unabbr FOR
1505
1506For makefiles (makefile, Makefile, imakefile, makefile.unix, etc.): >
1507
1508 :autocmd BufEnter ?akefile* set include=^s\=include
1509 :autocmd BufLeave ?akefile* set include&
1510
1511To always start editing C files at the first function: >
1512
1513 :autocmd BufRead *.c,*.h 1;/^{
1514
1515Without the "1;" above, the search would start from wherever the file was
1516entered, rather than from the start of the file.
1517
1518 *skeleton* *template*
1519To read a skeleton (template) file when opening a new file: >
1520
1521 :autocmd BufNewFile *.c 0r ~/vim/skeleton.c
1522 :autocmd BufNewFile *.h 0r ~/vim/skeleton.h
1523 :autocmd BufNewFile *.java 0r ~/vim/skeleton.java
1524
1525To insert the current date and time in a *.html file when writing it: >
1526
1527 :autocmd BufWritePre,FileWritePre *.html ks|call LastMod()|'s
1528 :fun LastMod()
1529 : if line("$") > 20
1530 : let l = 20
1531 : else
1532 : let l = line("$")
1533 : endif
1534 : exe "1," . l . "g/Last modified: /s/Last modified: .*/Last modified: " .
1535 : \ strftime("%Y %b %d")
1536 :endfun
1537
1538You need to have a line "Last modified: <date time>" in the first 20 lines
1539of the file for this to work. Vim replaces <date time> (and anything in the
1540same line after it) with the current date and time. Explanation:
1541 ks mark current position with mark 's'
1542 call LastMod() call the LastMod() function to do the work
1543 's return the cursor to the old position
1544The LastMod() function checks if the file is shorter than 20 lines, and then
1545uses the ":g" command to find lines that contain "Last modified: ". For those
1546lines the ":s" command is executed to replace the existing date with the
1547current one. The ":execute" command is used to be able to use an expression
1548for the ":g" and ":s" commands. The date is obtained with the strftime()
1549function. You can change its argument to get another date string.
1550
1551When entering :autocmd on the command-line, completion of events and command
1552names may be done (with <Tab>, CTRL-D, etc.) where appropriate.
1553
1554Vim executes all matching autocommands in the order that you specify them.
1555It is recommended that your first autocommand be used for all files by using
1556"*" as the file pattern. This means that you can define defaults you like
1557here for any settings, and if there is another matching autocommand it will
1558override these. But if there is no other matching autocommand, then at least
1559your default settings are recovered (if entering this file from another for
1560which autocommands did match). Note that "*" will also match files starting
1561with ".", unlike Unix shells.
1562
1563 *autocmd-searchpat*
1564Autocommands do not change the current search patterns. Vim saves the current
1565search patterns before executing autocommands then restores them after the
1566autocommands finish. This means that autocommands do not affect the strings
1567highlighted with the 'hlsearch' option. Within autocommands, you can still
1568use search patterns normally, e.g., with the "n" command.
1569If you want an autocommand to set the search pattern, such that it is used
1570after the autocommand finishes, use the ":let @/ =" command.
1571The search-highlighting cannot be switched off with ":nohlsearch" in an
1572autocommand. Use the 'h' flag in the 'viminfo' option to disable search-
1573highlighting when starting Vim.
1574
1575 *Cmd-event*
1576When using one of the "*Cmd" events, the matching autocommands are expected to
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00001577do the file reading, writing or sourcing. This can be used when working with
1578a special kind of file, for example on a remote system.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579CAREFUL: If you use these events in a wrong way, it may have the effect of
1580making it impossible to read or write the matching files! Make sure you test
1581your autocommands properly. Best is to use a pattern that will never match a
1582normal file name, for example "ftp://*".
1583
1584When defining a BufReadCmd it will be difficult for Vim to recover a crashed
1585editing session. When recovering from the original file, Vim reads only those
1586parts of a file that are not found in the swap file. Since that is not
1587possible with a BufReadCmd, use the |:preserve| command to make sure the
1588original file isn't needed for recovery. You might want to do this only when
1589you expect the file to be modified.
1590
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00001591For file read and write commands the |v:cmdarg| variable holds the "++enc="
1592and "++ff=" argument that are effective. These should be used for the command
1593that reads/writes the file. The |v:cmdbang| variable is one when "!" was
1594used, zero otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595
Bram Moolenaarc88ebf72010-07-22 22:30:23 +02001596See the $VIMRUNTIME/plugin/netrwPlugin.vim for examples.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597
Bram Moolenaarb3480382005-12-11 21:33:32 +00001598==============================================================================
159911. Disabling autocommands *autocmd-disable*
1600
1601To disable autocommands for some time use the 'eventignore' option. Note that
1602this may cause unexpected behavior, make sure you restore 'eventignore'
1603afterwards, using a |:try| block with |:finally|.
1604
1605 *:noautocmd* *:noa*
1606To disable autocommands for just one command use the ":noautocmd" command
1607modifier. This will set 'eventignore' to "all" for the duration of the
1608following command. Example: >
1609
1610 :noautocmd w fname.gz
1611
1612This will write the file without triggering the autocommands defined by the
1613gzip plugin.
1614
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001615
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001616 vim:tw=78:ts=8:noet:ft=help:norl: