Mercurial > vim
annotate runtime/doc/autocmd.txt @ 16985:914898e347fe
Added tag v8.1.1492 for changeset d4ecdb8a4c58ae162f0f8d7b2fb0fcc97dadab32
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 08 Jun 2019 12:15:09 +0200 |
parents | d23afa4d8b63 |
children | 620e9011b685 |
rev | line source |
---|---|
16944 | 1 *autocmd.txt* For Vim version 8.1. Last change: 2019 Jun 02 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
14193 | 7 Automatic commands *autocommand* *autocommands* |
7 | 8 |
9 For a basic explanation, see section |40.3| in the user manual. | |
10 | |
11 1. Introduction |autocmd-intro| | |
12 2. Defining autocommands |autocmd-define| | |
13 3. Removing autocommands |autocmd-remove| | |
14 4. Listing autocommands |autocmd-list| | |
15 5. Events |autocmd-events| | |
16 6. Patterns |autocmd-patterns| | |
40 | 17 7. Buffer-local autocommands |autocmd-buflocal| |
18 8. Groups |autocmd-groups| | |
19 9. Executing autocommands |autocmd-execute| | |
20 10. Using autocommands |autocmd-use| | |
590 | 21 11. Disabling autocommands |autocmd-disable| |
7 | 22 |
23 | |
24 ============================================================================== | |
25 1. Introduction *autocmd-intro* | |
26 | |
22 | 27 You can specify commands to be executed automatically when reading or writing |
28 a file, when entering or leaving a buffer or window, and when exiting Vim. | |
29 For example, you can create an autocommand to set the 'cindent' option for | |
30 files matching *.c. You can also use autocommands to implement advanced | |
7 | 31 features, such as editing compressed files (see |gzip-example|). The usual |
32 place to put autocommands is in your .vimrc or .exrc file. | |
33 | |
13231 | 34 *E203* *E204* *E143* *E855* *E937* *E952* |
7 | 35 WARNING: Using autocommands is very powerful, and may lead to unexpected side |
36 effects. Be careful not to destroy your text. | |
37 - It's a good idea to do some testing on an expendable copy of a file first. | |
38 For example: If you use autocommands to decompress a file when starting to | |
39 edit it, make sure that the autocommands for compressing when writing work | |
40 correctly. | |
41 - Be prepared for an error halfway through (e.g., disk full). Vim will mostly | |
42 be able to undo the changes to the buffer, but you may have to clean up the | |
43 changes to other files by hand (e.g., compress a file that has been | |
44 decompressed). | |
45 - If the BufRead* events allow you to edit a compressed file, the FileRead* | |
46 events should do the same (this makes recovery possible in some rare cases). | |
47 It's a good idea to use the same autocommands for the File* and Buf* events | |
48 when possible. | |
49 | |
50 ============================================================================== | |
51 2. Defining autocommands *autocmd-define* | |
52 | |
53 *:au* *:autocmd* | |
16217
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
54 :au[tocmd] [group] {event} {pat} [++once] [++nested] {cmd} |
7 | 55 Add {cmd} to the list of commands that Vim will |
56 execute automatically on {event} for a file matching | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
57 {pat} |autocmd-patterns|. |
13482
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
58 Note: A quote character is seen as argument to the |
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
59 :autocmd and won't start a comment. |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
60 Vim always adds the {cmd} after existing autocommands, |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
61 so that the autocommands execute in the order in which |
16217
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
62 they were given. |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
63 See |autocmd-nested| for [++nested]. "nested" |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
64 (without the ++) can also be used, for backwards |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
65 compatibility. |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
66 *autocmd-once* |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
67 If [++once] is supplied the command is executed once, |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
68 then removed ("one shot"). |
7 | 69 |
40 | 70 The special pattern <buffer> or <buffer=N> defines a buffer-local autocommand. |
71 See |autocmd-buflocal|. | |
72 | |
9653
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
73 Note: The ":autocmd" command can only be followed by another command when the |
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
74 '|' appears before {cmd}. This works: > |
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
75 :augroup mine | au! BufRead | augroup END |
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
76 But this sees "augroup" as part of the defined command: > |
12785 | 77 :augroup mine | au! BufRead * | augroup END |
9653
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
78 :augroup mine | au BufRead * set tw=70 | augroup END |
12785 | 79 Instead you can put the group name into the command: > |
80 :au! mine BufRead * | |
81 :au mine BufRead * set tw=70 | |
82 Or use `:execute`: > | |
83 :augroup mine | exe "au! BufRead *" | augroup END | |
84 :augroup mine | exe "au BufRead * set tw=70" | augroup END | |
9653
01c9630e80e0
commit https://github.com/vim/vim/commit/e99e84497b89e5f91df519790802770920ecf4fe
Christian Brabandt <cb@256bit.org>
parents:
9599
diff
changeset
|
85 |
7 | 86 Note that special characters (e.g., "%", "<cword>") in the ":autocmd" |
87 arguments are not expanded when the autocommand is defined. These will be | |
88 expanded when the Event is recognized, and the {cmd} is executed. The only | |
89 exception is that "<sfile>" is expanded when the autocmd is defined. Example: | |
90 > | |
91 :au BufNewFile,BufRead *.html so <sfile>:h/html.vim | |
92 | |
93 Here Vim expands <sfile> to the name of the file containing this line. | |
94 | |
10244
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
95 `:autocmd` adds to the list of autocommands regardless of whether they are |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
96 already present. When your .vimrc file is sourced twice, the autocommands |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
97 will appear twice. To avoid this, define your autocommands in a group, so |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
98 that you can easily clear them: > |
7 | 99 |
10244
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
100 augroup vimrc |
13482
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
101 " Remove all vimrc autocommands |
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
102 autocmd! |
10244
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
103 au BufNewFile,BufRead *.html so <sfile>:h/html.vim |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
104 augroup END |
7 | 105 |
106 If you don't want to remove all autocommands, you can instead use a variable | |
107 to ensure that Vim includes the autocommands only once: > | |
108 | |
109 :if !exists("autocommands_loaded") | |
110 : let autocommands_loaded = 1 | |
111 : au ... | |
112 :endif | |
113 | |
114 When the [group] argument is not given, Vim uses the current group (as defined | |
115 with ":augroup"); otherwise, Vim uses the group defined with [group]. Note | |
116 that [group] must have been defined before. You cannot define a new group | |
117 with ":au group ..."; use ":augroup" for that. | |
118 | |
119 While testing autocommands, you might find the 'verbose' option to be useful: > | |
120 :set verbose=9 | |
121 This setting makes Vim echo the autocommands as it executes them. | |
122 | |
123 When defining an autocommand in a script, it will be able to call functions | |
124 local to the script and use mappings local to the script. When the event is | |
125 triggered and the command executed, it will run in the context of the script | |
126 it was defined in. This matters if |<SID>| is used in a command. | |
127 | |
1621 | 128 When executing the commands, the message from one command overwrites a |
7 | 129 previous message. This is different from when executing the commands |
130 manually. Mostly the screen will not scroll up, thus there is no hit-enter | |
131 prompt. When one command outputs two messages this can happen anyway. | |
132 | |
133 ============================================================================== | |
134 3. Removing autocommands *autocmd-remove* | |
135 | |
16217
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
136 :au[tocmd]! [group] {event} {pat} [++once] [++nested] {cmd} |
7 | 137 Remove all autocommands associated with {event} and |
16217
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
138 {pat}, and add the command {cmd}. |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
139 See |autocmd-once| for [++once]. |
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
140 See |autocmd-nested| for [++nested]. |
7 | 141 |
142 :au[tocmd]! [group] {event} {pat} | |
143 Remove all autocommands associated with {event} and | |
144 {pat}. | |
145 | |
146 :au[tocmd]! [group] * {pat} | |
147 Remove all autocommands associated with {pat} for all | |
148 events. | |
149 | |
150 :au[tocmd]! [group] {event} | |
151 Remove ALL autocommands for {event}. | |
10244
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
152 Warning: You should not do this without a group for |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
153 |BufRead| and other common events, it can break |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
154 plugins, syntax highlighting, etc. |
7 | 155 |
156 :au[tocmd]! [group] Remove ALL autocommands. | |
13482
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
157 Note: a quote will be seen as argument to the :autocmd |
9eebe457eb3c
Update runtime files. Convert a couple of help files to utf-8.
Christian Brabandt <cb@256bit.org>
parents:
13444
diff
changeset
|
158 and won't start a comment. |
10244
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
159 Warning: You should normally not do this without a |
876fbdd84e52
commit https://github.com/vim/vim/commit/2ec618c9feac4573b154510236ad8121c77d0eca
Christian Brabandt <cb@256bit.org>
parents:
10218
diff
changeset
|
160 group, it breaks plugins, syntax highlighting, etc. |
7 | 161 |
162 When the [group] argument is not given, Vim uses the current group (as defined | |
163 with ":augroup"); otherwise, Vim uses the group defined with [group]. | |
164 | |
165 ============================================================================== | |
166 4. Listing autocommands *autocmd-list* | |
167 | |
168 :au[tocmd] [group] {event} {pat} | |
169 Show the autocommands associated with {event} and | |
170 {pat}. | |
171 | |
172 :au[tocmd] [group] * {pat} | |
173 Show the autocommands associated with {pat} for all | |
174 events. | |
175 | |
176 :au[tocmd] [group] {event} | |
177 Show all autocommands for {event}. | |
178 | |
179 :au[tocmd] [group] Show all autocommands. | |
180 | |
181 If you provide the [group] argument, Vim lists only the autocommands for | |
182 [group]; otherwise, Vim lists the autocommands for ALL groups. Note that this | |
183 argument behavior differs from that for defining and removing autocommands. | |
184 | |
40 | 185 In order to list buffer-local autocommands, use a pattern in the form <buffer> |
186 or <buffer=N>. See |autocmd-buflocal|. | |
187 | |
500 | 188 *:autocmd-verbose* |
189 When 'verbose' is non-zero, listing an autocommand will also display where it | |
190 was last defined. Example: > | |
191 | |
192 :verbose autocmd BufEnter | |
193 FileExplorer BufEnter | |
856 | 194 * call s:LocalBrowse(expand("<amatch>")) |
500 | 195 Last set from /usr/share/vim/vim-7.0/plugin/NetrwPlugin.vim |
196 < | |
197 See |:verbose-cmd| for more information. | |
198 | |
7 | 199 ============================================================================== |
200 5. Events *autocmd-events* *E215* *E216* | |
201 | |
579 | 202 You can specify a comma-separated list of event names. No white space can be |
203 used in this list. The command applies to all the events in the list. | |
204 | |
205 For READING FILES there are four kinds of events possible: | |
206 BufNewFile starting to edit a non-existent file | |
207 BufReadPre BufReadPost starting to edit an existing file | |
208 FilterReadPre FilterReadPost read the temp file with filter output | |
209 FileReadPre FileReadPost any other file read | |
210 Vim uses only one of these four kinds when reading a file. The "Pre" and | |
211 "Post" events are both triggered, before and after reading the file. | |
212 | |
213 Note that the autocommands for the *ReadPre events and all the Filter events | |
214 are not allowed to change the current buffer (you will get an error message if | |
215 this happens). This is to prevent the file to be read into the wrong buffer. | |
216 | |
217 Note that the 'modified' flag is reset AFTER executing the BufReadPost | |
218 and BufNewFile autocommands. But when the 'modified' option was set by the | |
219 autocommands, this doesn't happen. | |
220 | |
221 You can use the 'eventignore' option to ignore a number of events or all | |
222 events. | |
7 | 223 *autocommand-events* *{event}* |
224 Vim recognizes the following events. Vim ignores the case of event names | |
225 (e.g., you can use "BUFread" or "bufread" instead of "BufRead"). | |
226 | |
579 | 227 First an overview by function with a short explanation. Then the list |
843 | 228 alphabetically with full explanations |autocmd-events-abc|. |
579 | 229 |
230 Name triggered by ~ | |
231 | |
232 Reading | |
233 |BufNewFile| starting to edit a file that doesn't exist | |
234 |BufReadPre| starting to edit a new buffer, before reading the file | |
235 |BufRead| starting to edit a new buffer, after reading the file | |
236 |BufReadPost| starting to edit a new buffer, after reading the file | |
237 |BufReadCmd| before starting to edit a new buffer |Cmd-event| | |
238 | |
239 |FileReadPre| before reading a file with a ":read" command | |
240 |FileReadPost| after reading a file with a ":read" command | |
843 | 241 |FileReadCmd| before reading a file with a ":read" command |Cmd-event| |
579 | 242 |
243 |FilterReadPre| before reading a file from a filter command | |
244 |FilterReadPost| after reading a file from a filter command | |
245 | |
246 |StdinReadPre| before reading from stdin into the buffer | |
247 |StdinReadPost| After reading from the stdin into the buffer | |
248 | |
249 Writing | |
250 |BufWrite| starting to write the whole buffer to a file | |
251 |BufWritePre| starting to write the whole buffer to a file | |
252 |BufWritePost| after writing the whole buffer to a file | |
253 |BufWriteCmd| before writing the whole buffer to a file |Cmd-event| | |
254 | |
255 |FileWritePre| starting to write part of a buffer to a file | |
256 |FileWritePost| after writing part of a buffer to a file | |
257 |FileWriteCmd| before writing part of a buffer to a file |Cmd-event| | |
258 | |
259 |FileAppendPre| starting to append to a file | |
260 |FileAppendPost| after appending to a file | |
261 |FileAppendCmd| before appending to a file |Cmd-event| | |
262 | |
263 |FilterWritePre| starting to write a file for a filter command or diff | |
264 |FilterWritePost| after writing a file for a filter command or diff | |
265 | |
266 Buffers | |
267 |BufAdd| just after adding a buffer to the buffer list | |
268 |BufCreate| just after adding a buffer to the buffer list | |
269 |BufDelete| before deleting a buffer from the buffer list | |
270 |BufWipeout| before completely deleting a buffer | |
13444
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
271 |TerminalOpen| after a terminal buffer was created |
579 | 272 |
273 |BufFilePre| before changing the name of the current buffer | |
274 |BufFilePost| after changing the name of the current buffer | |
275 | |
276 |BufEnter| after entering a buffer | |
277 |BufLeave| before leaving to another buffer | |
278 |BufWinEnter| after a buffer is displayed in a window | |
279 |BufWinLeave| before a buffer is removed from a window | |
280 | |
281 |BufUnload| before unloading a buffer | |
282 |BufHidden| just after a buffer has become hidden | |
283 |BufNew| just after creating a new buffer | |
284 | |
285 |SwapExists| detected an existing swap file | |
286 | |
287 Options | |
288 |FileType| when the 'filetype' option has been set | |
289 |Syntax| when the 'syntax' option has been set | |
290 |EncodingChanged| after the 'encoding' option has been changed | |
291 |TermChanged| after the value of 'term' has changed | |
6935 | 292 |OptionSet| after setting any option |
579 | 293 |
294 Startup and exit | |
295 |VimEnter| after doing all the startup stuff | |
296 |GUIEnter| after starting the GUI successfully | |
3830 | 297 |GUIFailed| after starting the GUI failed |
1154 | 298 |TermResponse| after the terminal response to |t_RV| is received |
579 | 299 |
13442
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
300 |QuitPre| when using `:quit`, before deciding whether to exit |
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
301 |ExitPre| when using a command that may make Vim exit |
579 | 302 |VimLeavePre| before exiting Vim, before writing the viminfo file |
303 |VimLeave| before exiting Vim, after writing the viminfo file | |
304 | |
305 Various | |
306 |FileChangedShell| Vim notices that a file changed since editing started | |
766 | 307 |FileChangedShellPost| After handling a file changed since editing started |
579 | 308 |FileChangedRO| before making the first change to a read-only file |
309 | |
14945 | 310 |DiffUpdated| after diffs have been updated |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
311 |DirChanged| after the working directory has changed |
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
312 |
724 | 313 |ShellCmdPost| after executing a shell command |
314 |ShellFilterPost| after filtering with a shell command | |
315 | |
6154 | 316 |CmdUndefined| a user command is used but it isn't defined |
579 | 317 |FuncUndefined| a user function is used but it isn't defined |
650 | 318 |SpellFileMissing| a spell file is used but it can't be found |
716 | 319 |SourcePre| before sourcing a Vim script |
15640 | 320 |SourcePost| after sourcing a Vim script |
1061 | 321 |SourceCmd| before sourcing a Vim script |Cmd-event| |
579 | 322 |
766 | 323 |VimResized| after the Vim window size changed |
579 | 324 |FocusGained| Vim got input focus |
325 |FocusLost| Vim lost input focus | |
326 |CursorHold| the user doesn't press a key for a while | |
661 | 327 |CursorHoldI| the user doesn't press a key for a while in Insert mode |
328 |CursorMoved| the cursor was moved in Normal mode | |
329 |CursorMovedI| the cursor was moved in Insert mode | |
579 | 330 |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
331 |WinNew| after creating a new window |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
332 |TabNew| after creating a new tab page |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
333 |TabClosed| after closing a tab page |
579 | 334 |WinEnter| after entering another window |
335 |WinLeave| before leaving a window | |
677 | 336 |TabEnter| after entering another tab page |
337 |TabLeave| before leaving a tab page | |
579 | 338 |CmdwinEnter| after entering the command-line window |
339 |CmdwinLeave| before leaving the command-line window | |
340 | |
13437 | 341 |CmdlineChanged| after a change was made to the command-line text |
342 |CmdlineEnter| after the cursor moves to the command line | |
343 |CmdlineLeave| before the cursor leaves the command line | |
344 | |
579 | 345 |InsertEnter| starting Insert mode |
346 |InsertChange| when typing <Insert> while in Insert or Replace mode | |
347 |InsertLeave| when leaving Insert mode | |
2845 | 348 |InsertCharPre| when a character was typed in Insert mode, before |
349 inserting it | |
579 | 350 |
5555 | 351 |TextChanged| after a change was made to the text in Normal mode |
352 |TextChangedI| after a change was made to the text in Insert mode | |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
353 when popup menu is not visible |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
354 |TextChangedP| after a change was made to the text in Insert mode |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
355 when popup menu visible |
14347 | 356 |TextYankPost| after text has been yanked or deleted |
5555 | 357 |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13735
diff
changeset
|
358 |ColorSchemePre| before loading a color scheme |
579 | 359 |ColorScheme| after loading a color scheme |
360 | |
361 |RemoteReply| a reply from a server Vim was received | |
362 | |
363 |QuickFixCmdPre| before a quickfix command is run | |
364 |QuickFixCmdPost| after a quickfix command is run | |
365 | |
366 |SessionLoadPost| after loading a session file | |
367 | |
368 |MenuPopup| just before showing the popup menu | |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
369 |CompleteChanged| after Insert mode completion menu changed |
3830 | 370 |CompleteDone| after Insert mode completion is done |
579 | 371 |
372 |User| to be used in combination with ":doautocmd" | |
373 | |
374 | |
375 The alphabetical list of autocommand events: *autocmd-events-abc* | |
376 | |
377 *BufCreate* *BufAdd* | |
378 BufAdd or BufCreate Just after creating a new buffer which is | |
379 added to the buffer list, or adding a buffer | |
380 to the buffer list. | |
381 Also used just after a buffer in the buffer | |
382 list has been renamed. | |
383 The BufCreate event is for historic reasons. | |
384 NOTE: When this autocommand is executed, the | |
385 current buffer "%" may be different from the | |
386 buffer being created "<afile>". | |
387 *BufDelete* | |
388 BufDelete Before deleting a buffer from the buffer list. | |
389 The BufUnload may be called first (if the | |
390 buffer was loaded). | |
391 Also used just before a buffer in the buffer | |
392 list is renamed. | |
393 NOTE: When this autocommand is executed, the | |
394 current buffer "%" may be different from the | |
1621 | 395 buffer being deleted "<afile>" and "<abuf>". |
1919 | 396 Don't change to another buffer, it will cause |
397 problems. | |
579 | 398 *BufEnter* |
399 BufEnter After entering a buffer. Useful for setting | |
400 options for a file type. Also executed when | |
401 starting to edit a buffer, after the | |
402 BufReadPost autocommands. | |
403 *BufFilePost* | |
404 BufFilePost After changing the name of the current buffer | |
405 with the ":file" or ":saveas" command. | |
625 | 406 *BufFilePre* |
579 | 407 BufFilePre Before changing the name of the current buffer |
408 with the ":file" or ":saveas" command. | |
409 *BufHidden* | |
410 BufHidden Just after a buffer has become hidden. That | |
411 is, when there are no longer windows that show | |
412 the buffer, but the buffer is not unloaded or | |
413 deleted. Not used for ":qa" or ":q" when | |
414 exiting Vim. | |
415 NOTE: When this autocommand is executed, the | |
416 current buffer "%" may be different from the | |
417 buffer being unloaded "<afile>". | |
418 *BufLeave* | |
419 BufLeave Before leaving to another buffer. Also when | |
420 leaving or closing the current window and the | |
421 new current window is not for the same buffer. | |
422 Not used for ":qa" or ":q" when exiting Vim. | |
423 *BufNew* | |
424 BufNew Just after creating a new buffer. Also used | |
425 just after a buffer has been renamed. When | |
426 the buffer is added to the buffer list BufAdd | |
427 will be triggered too. | |
428 NOTE: When this autocommand is executed, the | |
429 current buffer "%" may be different from the | |
430 buffer being created "<afile>". | |
7 | 431 *BufNewFile* |
432 BufNewFile When starting to edit a file that doesn't | |
433 exist. Can be used to read in a skeleton | |
434 file. | |
435 *BufRead* *BufReadPost* | |
436 BufRead or BufReadPost When starting to edit a new buffer, after | |
437 reading the file into the buffer, before | |
438 executing the modelines. See |BufWinEnter| | |
439 for when you need to do something after | |
440 processing the modelines. | |
441 This does NOT work for ":r file". Not used | |
442 when the file doesn't exist. Also used after | |
443 successfully recovering a file. | |
3682 | 444 Also triggered for the filetypedetect group |
445 when executing ":filetype detect" and when | |
446 writing an unnamed buffer in a way that the | |
447 buffer gets a name. | |
625 | 448 *BufReadCmd* |
7 | 449 BufReadCmd Before starting to edit a new buffer. Should |
450 read the file into the buffer. |Cmd-event| | |
625 | 451 *BufReadPre* *E200* *E201* |
579 | 452 BufReadPre When starting to edit a new buffer, before |
453 reading the file into the buffer. Not used | |
454 if the file doesn't exist. | |
455 *BufUnload* | |
456 BufUnload Before unloading a buffer. This is when the | |
457 text in the buffer is going to be freed. This | |
458 may be after a BufWritePost and before a | |
459 BufDelete. Also used for all buffers that are | |
460 loaded when Vim is going to exit. | |
461 NOTE: When this autocommand is executed, the | |
462 current buffer "%" may be different from the | |
463 buffer being unloaded "<afile>". | |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
464 Don't change to another buffer or window, it |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
465 will cause problems! |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
466 When exiting and v:dying is 2 or more this |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
467 event is not triggered. |
579 | 468 *BufWinEnter* |
469 BufWinEnter After a buffer is displayed in a window. This | |
470 can be when the buffer is loaded (after | |
1621 | 471 processing the modelines) or when a hidden |
579 | 472 buffer is displayed in a window (and is no |
1621 | 473 longer hidden). |
474 Does not happen for |:split| without | |
475 arguments, since you keep editing the same | |
476 buffer, or ":split" with a file that's already | |
1668 | 477 open in a window, because it re-uses an |
478 existing buffer. But it does happen for a | |
479 ":split" with the name of the current buffer, | |
480 since it reloads that buffer. | |
13835
8e583c52eb44
patch 8.0.1789: BufWinEnter does not work well for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
481 Does not happen for a terminal window, because |
8e583c52eb44
patch 8.0.1789: BufWinEnter does not work well for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
482 it starts in Terminal-Job mode and Normal mode |
8e583c52eb44
patch 8.0.1789: BufWinEnter does not work well for a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13818
diff
changeset
|
483 commands won't work. Use |TerminalOpen| instead. |
579 | 484 *BufWinLeave* |
485 BufWinLeave Before a buffer is removed from a window. | |
486 Not when it's still visible in another window. | |
487 Also triggered when exiting. It's triggered | |
488 before BufUnload or BufHidden. | |
489 NOTE: When this autocommand is executed, the | |
490 current buffer "%" may be different from the | |
491 buffer being unloaded "<afile>". | |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
492 When exiting and v:dying is 2 or more this |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
493 event is not triggered. |
579 | 494 *BufWipeout* |
495 BufWipeout Before completely deleting a buffer. The | |
496 BufUnload and BufDelete events may be called | |
497 first (if the buffer was loaded and was in the | |
498 buffer list). Also used just before a buffer | |
499 is renamed (also when it's not in the buffer | |
500 list). | |
501 NOTE: When this autocommand is executed, the | |
502 current buffer "%" may be different from the | |
503 buffer being deleted "<afile>". | |
1919 | 504 Don't change to another buffer, it will cause |
505 problems. | |
7 | 506 *BufWrite* *BufWritePre* |
507 BufWrite or BufWritePre Before writing the whole buffer to a file. | |
508 *BufWriteCmd* | |
509 BufWriteCmd Before writing the whole buffer to a file. | |
510 Should do the writing of the file and reset | |
39 | 511 'modified' if successful, unless '+' is in |
512 'cpo' and writing to another file |cpo-+|. | |
513 The buffer contents should not be changed. | |
3082 | 514 When the command resets 'modified' the undo |
515 information is adjusted to mark older undo | |
516 states as 'modified', like |:write| does. | |
39 | 517 |Cmd-event| |
579 | 518 *BufWritePost* |
519 BufWritePost After writing the whole buffer to a file | |
520 (should undo the commands for BufWritePre). | |
6154 | 521 *CmdUndefined* |
522 CmdUndefined When a user command is used but it isn't | |
523 defined. Useful for defining a command only | |
524 when it's used. The pattern is matched | |
525 against the command name. Both <amatch> and | |
526 <afile> are set to the name of the command. | |
527 NOTE: Autocompletion won't work until the | |
528 command is defined. An alternative is to | |
529 always define the user command and have it | |
530 invoke an autoloaded function. See |autoload|. | |
13142
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
531 *CmdlineChanged* |
13437 | 532 CmdlineChanged After a change was made to the text in the |
533 command line. Be careful not to mess up | |
534 the command line, it may cause Vim to lock up. | |
13142
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
535 <afile> is set to a single character, |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
536 indicating the type of command-line. |
59a16624400a
patch 8.0.1445: cannot act on edits in the command line
Christian Brabandt <cb@256bit.org>
parents:
13051
diff
changeset
|
537 |cmdwin-char| |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
538 *CmdlineEnter* |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
539 CmdlineEnter After moving the cursor to the command line, |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
540 where the user can type a command or search |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
541 string. |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
542 <afile> is set to a single character, |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
543 indicating the type of command-line. |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
544 |cmdwin-char| |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
545 *CmdlineLeave* |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
546 CmdlineLeave Before leaving the command line. |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
547 Also when abandoning the command line, after |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
548 typing CTRL-C or <Esc>. |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
549 When the commands result in an error the |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12656
diff
changeset
|
550 command line is still executed. |
12656
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
551 <afile> is set to a single character, |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
552 indicating the type of command-line. |
0a9dacb8826a
patch 8.0.1206: no autocmd for entering or leaving the command line
Christian Brabandt <cb@256bit.org>
parents:
11659
diff
changeset
|
553 |cmdwin-char| |
579 | 554 *CmdwinEnter* |
555 CmdwinEnter After entering the command-line window. | |
556 Useful for setting options specifically for | |
557 this special type of window. This is | |
558 triggered _instead_ of BufEnter and WinEnter. | |
559 <afile> is set to a single character, | |
560 indicating the type of command-line. | |
561 |cmdwin-char| | |
562 *CmdwinLeave* | |
563 CmdwinLeave Before leaving the command-line window. | |
564 Useful to clean up any global setting done | |
565 with CmdwinEnter. This is triggered _instead_ | |
566 of BufLeave and WinLeave. | |
567 <afile> is set to a single character, | |
568 indicating the type of command-line. | |
569 |cmdwin-char| | |
570 *ColorScheme* | |
571 ColorScheme After loading a color scheme. |:colorscheme| | |
5521 | 572 The pattern is matched against the |
573 colorscheme name. <afile> can be used for the | |
574 name of the actual file where this option was | |
575 set, and <amatch> for the new colorscheme | |
576 name. | |
577 | |
13818
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13735
diff
changeset
|
578 *ColorSchemePre* |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13735
diff
changeset
|
579 ColorSchemePre Before loading a color scheme. |:colorscheme| |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13735
diff
changeset
|
580 Useful to setup removing things added by a |
28ac7914b2b6
Update runtime files and translations
Christian Brabandt <cb@256bit.org>
parents:
13735
diff
changeset
|
581 color scheme, before another one is loaded. |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
582 CompleteChanged *CompleteChanged* |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
583 After each time the Insert mode completion |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
584 menu changed. Not fired on popup menu hide, |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
585 use |CompleteDone| for that. Never triggered |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
586 recursively. |
661 | 587 |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
588 Sets these |v:event| keys: |
16380 | 589 completed_item See |complete-items|. |
16268
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
590 height nr of items visible |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
591 width screen cells |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
592 row top screen row |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
593 col leftmost screen column |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
594 size total nr of items |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
595 scrollbar TRUE if visible |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
596 |
0f65f2808470
patch 8.1.1138: plugins don't get notified when the popup menu changes
Bram Moolenaar <Bram@vim.org>
parents:
16217
diff
changeset
|
597 It is not allowed to change the text |textlock|. |
3682 | 598 *CompleteDone* |
599 CompleteDone After Insert mode completion is done. Either | |
600 when something was completed or abandoning | |
601 completion. |ins-completion| | |
6909 | 602 The |v:completed_item| variable contains |
603 information about the completed item. | |
3682 | 604 |
579 | 605 *CursorHold* |
606 CursorHold When the user doesn't press a key for the time | |
607 specified with 'updatetime'. Not re-triggered | |
608 until the user has pressed a key (i.e. doesn't | |
609 fire every 'updatetime' ms if you leave Vim to | |
610 make some coffee. :) See |CursorHold-example| | |
611 for previewing tags. | |
612 This event is only triggered in Normal mode. | |
1154 | 613 It is not triggered when waiting for a command |
614 argument to be typed, or a movement after an | |
615 operator. | |
610 | 616 While recording the CursorHold event is not |
617 triggered. |q| | |
6259 | 618 *<CursorHold>* |
619 Internally the autocommand is triggered by the | |
620 <CursorHold> key. In an expression mapping | |
621 |getchar()| may see this character. | |
622 | |
579 | 623 Note: Interactive commands cannot be used for |
624 this event. There is no hit-enter prompt, | |
625 the screen is updated directly (when needed). | |
626 Note: In the future there will probably be | |
627 another option to set the time. | |
628 Hint: to force an update of the status lines | |
629 use: > | |
630 :let &ro = &ro | |
631 < {only on Amiga, Unix, Win32, MSDOS and all GUI | |
632 versions} | |
661 | 633 *CursorHoldI* |
634 CursorHoldI Just like CursorHold, but in Insert mode. | |
8951
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8748
diff
changeset
|
635 Not triggered when waiting for another key, |
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8748
diff
changeset
|
636 e.g. after CTRL-V, and not when in CTRL-X mode |
0bdeaf7092bc
commit https://github.com/vim/vim/commit/aa3b15dbebf333282503d6031e2f9ba6ee4398ed
Christian Brabandt <cb@256bit.org>
parents:
8748
diff
changeset
|
637 |insert_expand|. |
661 | 638 |
639 *CursorMoved* | |
4911 | 640 CursorMoved After the cursor was moved in Normal or Visual |
641 mode. Also when the text of the cursor line | |
642 has been changed, e.g., with "x", "rx" or "p". | |
661 | 643 Not triggered when there is typeahead or when |
644 an operator is pending. | |
667 | 645 For an example see |match-parens|. |
16023 | 646 Note: This can not be skipped with |
647 `:noautocmd`. | |
4264 | 648 Careful: This is triggered very often, don't |
649 do anything that the user does not expect or | |
650 that is slow. | |
661 | 651 *CursorMovedI* |
652 CursorMovedI After the cursor was moved in Insert mode. | |
3082 | 653 Not triggered when the popup menu is visible. |
661 | 654 Otherwise the same as CursorMoved. |
579 | 655 *EncodingChanged* |
656 EncodingChanged Fires off after the 'encoding' option has been | |
657 changed. Useful to set up fonts, for example. | |
7 | 658 *FileAppendCmd* |
659 FileAppendCmd Before appending to a file. Should do the | |
26 | 660 appending to the file. Use the '[ and '] |
661 marks for the range of lines.|Cmd-event| | |
579 | 662 *FileAppendPost* |
663 FileAppendPost After appending to a file. | |
664 *FileAppendPre* | |
665 FileAppendPre Before appending to a file. Use the '[ and '] | |
666 marks for the range of lines. | |
667 *FileChangedRO* | |
668 FileChangedRO Before making the first change to a read-only | |
669 file. Can be used to check-out the file from | |
670 a source control system. Not triggered when | |
671 the change was caused by an autocommand. | |
672 This event is triggered when making the first | |
673 change in a buffer or the first change after | |
823 | 674 'readonly' was set, just before the change is |
675 applied to the text. | |
579 | 676 WARNING: If the autocommand moves the cursor |
677 the effect of the change is undefined. | |
819 | 678 *E788* |
679 It is not allowed to change to another buffer | |
680 here. You can reload the buffer but not edit | |
681 another one. | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5555
diff
changeset
|
682 *E881* |
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5555
diff
changeset
|
683 If the number of lines changes saving for undo |
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5555
diff
changeset
|
684 may fail and the change will be aborted. |
14770
27055ad9276b
patch 8.1.0397: no event triggered after updating diffs
Christian Brabandt <cb@256bit.org>
parents:
14519
diff
changeset
|
685 *DiffUpdated* |
27055ad9276b
patch 8.1.0397: no event triggered after updating diffs
Christian Brabandt <cb@256bit.org>
parents:
14519
diff
changeset
|
686 DiffUpdated After diffs have been updated. Depending on |
27055ad9276b
patch 8.1.0397: no event triggered after updating diffs
Christian Brabandt <cb@256bit.org>
parents:
14519
diff
changeset
|
687 what kind of diff is being used (internal or |
27055ad9276b
patch 8.1.0397: no event triggered after updating diffs
Christian Brabandt <cb@256bit.org>
parents:
14519
diff
changeset
|
688 external) this can be triggered on every |
27055ad9276b
patch 8.1.0397: no event triggered after updating diffs
Christian Brabandt <cb@256bit.org>
parents:
14519
diff
changeset
|
689 change or when doing |:diffupdate|. |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
690 *DirChanged* |
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
691 DirChanged The working directory has changed in response |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
692 to the |:cd| or |:tcd| or |:lcd| commands, or |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
693 as a result of the 'autochdir' option. |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
694 The pattern can be: |
16427
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
695 "window" to trigger on `:lcd` |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
696 "tabpage" to trigger on `:tcd` |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
697 "global" to trigger on `:cd` |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
698 "auto" to trigger on 'autochdir'. |
8c3a1bd270bb
patch 8.1.1218: cannot set a directory for a tab page
Bram Moolenaar <Bram@vim.org>
parents:
16380
diff
changeset
|
699 "drop" to trigger on editing a file |
13170
6559e98f3e74
patch 8.0.1459: cannot handle change of directory
Christian Brabandt <cb@256bit.org>
parents:
13142
diff
changeset
|
700 <afile> is set to the new directory name. |
13442
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
701 *ExitPre* |
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
702 ExitPre When using `:quit`, `:wq` in a way it makes |
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
703 Vim exit, or using `:qall`, just after |
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
704 |QuitPre|. Can be used to close any |
14123 | 705 non-essential window. Exiting may still be |
706 cancelled if there is a modified buffer that | |
707 isn't automatically saved, use |VimLeavePre| | |
708 for really exiting. | |
7 | 709 *FileChangedShell* |
710 FileChangedShell When Vim notices that the modification time of | |
711 a file has changed since editing started. | |
712 Also when the file attributes of the file | |
5908 | 713 change or when the size of the file changes. |
714 |timestamp| | |
7 | 715 Mostly triggered after executing a shell |
716 command, but also with a |:checktime| command | |
11473 | 717 or when gvim regains input focus. |
7 | 718 This autocommand is triggered for each changed |
719 file. It is not used when 'autoread' is set | |
720 and the buffer was not changed. If a | |
721 FileChangedShell autocommand is present the | |
722 warning message and prompt is not given. | |
179 | 723 The |v:fcs_reason| variable is set to indicate |
724 what happened and |v:fcs_choice| can be used | |
725 to tell Vim what to do next. | |
7 | 726 NOTE: When this autocommand is executed, the |
727 current buffer "%" may be different from the | |
11347 | 728 buffer that was changed, which is in "<afile>". |
7 | 729 NOTE: The commands must not change the current |
730 buffer, jump to another buffer or delete a | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
731 buffer. *E246* *E811* |
7 | 732 NOTE: This event never nests, to avoid an |
733 endless loop. This means that while executing | |
734 commands for the FileChangedShell event no | |
735 other FileChangedShell event will be | |
736 triggered. | |
766 | 737 *FileChangedShellPost* |
738 FileChangedShellPost After handling a file that was changed outside | |
739 of Vim. Can be used to update the statusline. | |
579 | 740 *FileEncoding* |
741 FileEncoding Obsolete. It still works and is equivalent | |
742 to |EncodingChanged|. | |
743 *FileReadCmd* | |
744 FileReadCmd Before reading a file with a ":read" command. | |
745 Should do the reading of the file. |Cmd-event| | |
746 *FileReadPost* | |
747 FileReadPost After reading a file with a ":read" command. | |
748 Note that Vim sets the '[ and '] marks to the | |
749 first and last line of the read. This can be | |
750 used to operate on the lines just read. | |
751 *FileReadPre* | |
752 FileReadPre Before reading a file with a ":read" command. | |
753 *FileType* | |
1154 | 754 FileType When the 'filetype' option has been set. The |
755 pattern is matched against the filetype. | |
579 | 756 <afile> can be used for the name of the file |
757 where this option was set, and <amatch> for | |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
758 the new value of 'filetype'. Navigating to |
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11473
diff
changeset
|
759 another window or buffer is not allowed. |
579 | 760 See |filetypes|. |
761 *FileWriteCmd* | |
762 FileWriteCmd Before writing to a file, when not writing the | |
763 whole buffer. Should do the writing to the | |
764 file. Should not change the buffer. Use the | |
765 '[ and '] marks for the range of lines. | |
766 |Cmd-event| | |
767 *FileWritePost* | |
768 FileWritePost After writing to a file, when not writing the | |
769 whole buffer. | |
770 *FileWritePre* | |
771 FileWritePre Before writing to a file, when not writing the | |
772 whole buffer. Use the '[ and '] marks for the | |
773 range of lines. | |
774 *FilterReadPost* | |
775 FilterReadPost After reading a file from a filter command. | |
776 Vim checks the pattern against the name of | |
777 the current buffer as with FilterReadPre. | |
778 Not triggered when 'shelltemp' is off. | |
779 *FilterReadPre* *E135* | |
780 FilterReadPre Before reading a file from a filter command. | |
781 Vim checks the pattern against the name of | |
782 the current buffer, not the name of the | |
783 temporary file that is the output of the | |
784 filter command. | |
785 Not triggered when 'shelltemp' is off. | |
786 *FilterWritePost* | |
787 FilterWritePost After writing a file for a filter command or | |
15334 | 788 making a diff with an external diff (see |
789 DiffUpdated for internal diff). | |
579 | 790 Vim checks the pattern against the name of |
791 the current buffer as with FilterWritePre. | |
792 Not triggered when 'shelltemp' is off. | |
793 *FilterWritePre* | |
794 FilterWritePre Before writing a file for a filter command or | |
15334 | 795 making a diff with an external diff. |
579 | 796 Vim checks the pattern against the name of |
797 the current buffer, not the name of the | |
798 temporary file that is the output of the | |
799 filter command. | |
800 Not triggered when 'shelltemp' is off. | |
7 | 801 *FocusGained* |
802 FocusGained When Vim got input focus. Only for the GUI | |
803 version and a few console versions where this | |
804 can be detected. | |
805 *FocusLost* | |
806 FocusLost When Vim lost input focus. Only for the GUI | |
807 version and a few console versions where this | |
11 | 808 can be detected. May also happen when a |
809 dialog pops up. | |
7 | 810 *FuncUndefined* |
811 FuncUndefined When a user function is used but it isn't | |
812 defined. Useful for defining a function only | |
1154 | 813 when it's used. The pattern is matched |
814 against the function name. Both <amatch> and | |
815 <afile> are set to the name of the function. | |
6154 | 816 NOTE: When writing Vim scripts a better |
817 alternative is to use an autoloaded function. | |
161 | 818 See |autoload-functions|. |
579 | 819 *GUIEnter* |
820 GUIEnter After starting the GUI successfully, and after | |
821 opening the window. It is triggered before | |
822 VimEnter when using gvim. Can be used to | |
823 position the window from a .gvimrc file: > | |
824 :autocmd GUIEnter * winpos 100 50 | |
1154 | 825 < *GUIFailed* |
826 GUIFailed After starting the GUI failed. Vim may | |
827 continue to run in the terminal, if possible | |
828 (only on Unix and alikes, when connecting the | |
829 X server fails). You may want to quit Vim: > | |
830 :autocmd GUIFailed * qall | |
579 | 831 < *InsertChange* |
832 InsertChange When typing <Insert> while in Insert or | |
833 Replace mode. The |v:insertmode| variable | |
834 indicates the new mode. | |
835 Be careful not to move the cursor or do | |
836 anything else that the user does not expect. | |
2845 | 837 *InsertCharPre* |
838 InsertCharPre When a character is typed in Insert mode, | |
839 before inserting the char. | |
840 The |v:char| variable indicates the char typed | |
841 and can be changed during the event to insert | |
842 a different character. When |v:char| is set | |
843 to more than one character this text is | |
844 inserted literally. | |
845 It is not allowed to change the text |textlock|. | |
846 The event is not triggered when 'paste' is | |
13437 | 847 set. {only with the +eval feature} |
579 | 848 *InsertEnter* |
1154 | 849 InsertEnter Just before starting Insert mode. Also for |
850 Replace mode and Virtual Replace mode. The | |
579 | 851 |v:insertmode| variable indicates the mode. |
4448 | 852 Be careful not to do anything else that the |
853 user does not expect. | |
854 The cursor is restored afterwards. If you do | |
855 not want that set |v:char| to a non-empty | |
856 string. | |
579 | 857 *InsertLeave* |
858 InsertLeave When leaving Insert mode. Also when using | |
859 CTRL-O |i_CTRL-O|. But not for |i_CTRL-C|. | |
860 *MenuPopup* | |
861 MenuPopup Just before showing the popup menu (under the | |
862 right mouse button). Useful for adjusting the | |
863 menu for what is under the cursor or mouse | |
864 pointer. | |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14945
diff
changeset
|
865 The pattern is matched against one or two |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14945
diff
changeset
|
866 characters representing the mode: |
579 | 867 n Normal |
868 v Visual | |
869 o Operator-pending | |
870 i Insert | |
843 | 871 c Command line |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14945
diff
changeset
|
872 tl Terminal |
6935 | 873 *OptionSet* |
874 OptionSet After setting an option. The pattern is | |
875 matched against the long option name. | |
876 The |v:option_old| variable indicates the | |
877 old option value, |v:option_new| variable | |
878 indicates the newly set value, the | |
879 |v:option_type| variable indicates whether | |
880 it's global or local scoped and |<amatch>| | |
881 indicates what option has been set. | |
882 | |
883 Is not triggered on startup and for the 'key' | |
884 option for obvious reasons. | |
885 | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
886 Usage example: Check for the existence of the |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
887 directory in the 'backupdir' and 'undodir' |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
888 options, create the directory if it doesn't |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
889 exist yet. |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
890 |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
891 Note: It's a bad idea to reset an option |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
892 during this autocommand, this may break a |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
893 plugin. You can always use `:noa` to prevent |
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6935
diff
changeset
|
894 triggering this autocommand. |
6935 | 895 |
14864 | 896 When using |:set| in the autocommand the event |
897 is not triggered again. | |
579 | 898 *QuickFixCmdPre* |
899 QuickFixCmdPre Before a quickfix command is run (|:make|, | |
657 | 900 |:lmake|, |:grep|, |:lgrep|, |:grepadd|, |
901 |:lgrepadd|, |:vimgrep|, |:lvimgrep|, | |
3281 | 902 |:vimgrepadd|, |:lvimgrepadd|, |:cscope|, |
3410
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3404
diff
changeset
|
903 |:cfile|, |:cgetfile|, |:caddfile|, |:lfile|, |
94601b379f38
Updated runtime files. Add Dutch translations.
Bram Moolenaar <bram@vim.org>
parents:
3404
diff
changeset
|
904 |:lgetfile|, |:laddfile|, |:helpgrep|, |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
905 |:lhelpgrep|, |:cexpr|, |:cgetexpr|, |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
906 |:caddexpr|, |:cbuffer|, |:cgetbuffer|, |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
907 |:caddbuffer|). |
2151
ae22c450546c
updated for version 7.2.433
Bram Moolenaar <bram@zimbu.org>
parents:
2033
diff
changeset
|
908 The pattern is matched against the command |
ae22c450546c
updated for version 7.2.433
Bram Moolenaar <bram@zimbu.org>
parents:
2033
diff
changeset
|
909 being run. When |:grep| is used but 'grepprg' |
ae22c450546c
updated for version 7.2.433
Bram Moolenaar <bram@zimbu.org>
parents:
2033
diff
changeset
|
910 is set to "internal" it still matches "grep". |
579 | 911 This command cannot be used to set the |
912 'makeprg' and 'grepprg' variables. | |
913 If this command causes an error, the quickfix | |
914 command is not executed. | |
915 *QuickFixCmdPost* | |
916 QuickFixCmdPost Like QuickFixCmdPre, but after a quickfix | |
842 | 917 command is run, before jumping to the first |
3404 | 918 location. For |:cfile| and |:lfile| commands |
919 it is run after error file is read and before | |
5663
1dea14d4c738
Update runtime files. Add support for systemverilog.
Bram Moolenaar <bram@vim.org>
parents:
5555
diff
changeset
|
920 moving to the first error. |
3404 | 921 See |QuickFixCmdPost-example|. |
3682 | 922 *QuitPre* |
4229 | 923 QuitPre When using `:quit`, `:wq` or `:qall`, before |
924 deciding whether it closes the current window | |
925 or quits Vim. Can be used to close any | |
926 non-essential window if the current window is | |
927 the last ordinary window. | |
13442
94e638936d3e
patch 8.0.1595: no autocommand triggered before exiting
Christian Brabandt <cb@256bit.org>
parents:
13437
diff
changeset
|
928 Also see |ExitPre|. |
579 | 929 *RemoteReply* |
930 RemoteReply When a reply from a Vim that functions as | |
1154 | 931 server was received |server2client()|. The |
932 pattern is matched against the {serverid}. | |
579 | 933 <amatch> is equal to the {serverid} from which |
934 the reply was sent, and <afile> is the actual | |
935 reply string. | |
936 Note that even if an autocommand is defined, | |
937 the reply should be read with |remote_read()| | |
938 to consume it. | |
939 *SessionLoadPost* | |
940 SessionLoadPost After loading the session file created using | |
941 the |:mksession| command. | |
724 | 942 *ShellCmdPost* |
943 ShellCmdPost After executing a shell command with |:!cmd|, | |
944 |:shell|, |:make| and |:grep|. Can be used to | |
945 check for any changed files. | |
946 *ShellFilterPost* | |
947 ShellFilterPost After executing a shell command with | |
948 ":{range}!cmd", ":w !cmd" or ":r !cmd". | |
949 Can be used to check for any changed files. | |
716 | 950 *SourcePre* |
951 SourcePre Before sourcing a Vim script. |:source| | |
1061 | 952 <afile> is the name of the file being sourced. |
15442
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
953 *SourcePost* |
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
954 SourcePost After sourcing a Vim script. |:source| |
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
955 <afile> is the name of the file being sourced. |
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
956 Not triggered when sourcing was interrupted. |
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
957 Also triggered after a SourceCmd autocommand |
3e2e1608efa4
patch 8.1.0729: there is a SourcePre autocommand event but not a SourcePost
Bram Moolenaar <Bram@vim.org>
parents:
15334
diff
changeset
|
958 was triggered. |
1061 | 959 *SourceCmd* |
960 SourceCmd When sourcing a Vim script. |:source| | |
961 <afile> is the name of the file being sourced. | |
962 The autocommand must source this file. | |
963 |Cmd-event| | |
650 | 964 *SpellFileMissing* |
965 SpellFileMissing When trying to load a spell checking file and | |
1061 | 966 it can't be found. The pattern is matched |
967 against the language. <amatch> is the | |
968 language, 'encoding' also matters. See | |
650 | 969 |spell-SpellFileMissing|. |
579 | 970 *StdinReadPost* |
971 StdinReadPost After reading from the stdin into the buffer, | |
972 before executing the modelines. Only used | |
973 when the "-" argument was used when Vim was | |
974 started |--|. | |
975 *StdinReadPre* | |
976 StdinReadPre Before reading from stdin into the buffer. | |
977 Only used when the "-" argument was used when | |
978 Vim was started |--|. | |
979 *SwapExists* | |
980 SwapExists Detected an existing swap file when starting | |
981 to edit a file. Only when it is possible to | |
982 select a way to handle the situation, when Vim | |
983 would ask the user what to do. | |
984 The |v:swapname| variable holds the name of | |
590 | 985 the swap file found, <afile> the file being |
986 edited. |v:swapcommand| may contain a command | |
987 to be executed in the opened file. | |
988 The commands should set the |v:swapchoice| | |
989 variable to a string with one character to | |
990 tell Vim what should be done next: | |
579 | 991 'o' open read-only |
992 'e' edit the file anyway | |
993 'r' recover | |
994 'd' delete the swap file | |
995 'q' quit, don't edit the file | |
996 'a' abort, like hitting CTRL-C | |
997 When set to an empty string the user will be | |
998 asked, as if there was no SwapExists autocmd. | |
1919 | 999 *E812* |
1000 It is not allowed to change to another buffer, | |
1001 change a buffer name or change directory | |
1002 here. | |
13437 | 1003 {only available with the +eval feature} |
579 | 1004 *Syntax* |
1154 | 1005 Syntax When the 'syntax' option has been set. The |
1006 pattern is matched against the syntax name. | |
579 | 1007 <afile> can be used for the name of the file |
1008 where this option was set, and <amatch> for | |
1009 the new value of 'syntax'. | |
1010 See |:syn-on|. | |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1011 *TabClosed* |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1012 TabClosed After closing a tab page. |
677 | 1013 *TabEnter* |
1014 TabEnter Just after entering a tab page. |tab-page| | |
872 | 1015 After triggering the WinEnter and before |
1016 triggering the BufEnter event. | |
677 | 1017 *TabLeave* |
1018 TabLeave Just before leaving a tab page. |tab-page| | |
1019 A WinLeave event will have been triggered | |
1020 first. | |
9595
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1021 *TabNew* |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1022 TabNew When a tab page was created. |tab-page| |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1023 A WinEnter event will have been triggered |
0190d5de215f
commit https://github.com/vim/vim/commit/c917da4b3e8801a255dbefea8e4ed19c1c716dd8
Christian Brabandt <cb@256bit.org>
parents:
9286
diff
changeset
|
1024 first, TabEnter follows. |
579 | 1025 *TermChanged* |
1026 TermChanged After the value of 'term' has changed. Useful | |
1027 for re-loading the syntax file to update the | |
1028 colors, fonts and other terminal-dependent | |
1029 settings. Executed for all loaded buffers. | |
13444
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
1030 *TerminalOpen* |
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
1031 TerminalOpen Just after a terminal buffer was created, with |
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
1032 `:terminal` or |term_start()|. This event is |
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
1033 triggered even if the buffer is created |
9f06f7aca74c
patch 8.0.1596: no autocommand specifically for opening a terminal window
Christian Brabandt <cb@256bit.org>
parents:
13442
diff
changeset
|
1034 without a window, with the ++hidden option. |
579 | 1035 *TermResponse* |
1036 TermResponse After the response to |t_RV| is received from | |
1037 the terminal. The value of |v:termresponse| | |
1038 can be used to do things depending on the | |
2788 | 1039 terminal version. Note that this event may be |
1040 triggered halfway executing another event, | |
1041 especially if file I/O, a shell command or | |
1042 anything else that takes time is involved. | |
4264 | 1043 *TextChanged* |
1044 TextChanged After a change was made to the text in the | |
15512 | 1045 current buffer in Normal mode. That is after |
1046 |b:changedtick| has changed (also when that | |
1047 happened before the TextChanged autocommand | |
1048 was defined). | |
4264 | 1049 Not triggered when there is typeahead or when |
1050 an operator is pending. | |
16023 | 1051 Note: This can not be skipped with |
1052 `:noautocmd`. | |
4264 | 1053 Careful: This is triggered very often, don't |
1054 do anything that the user does not expect or | |
1055 that is slow. | |
1056 *TextChangedI* | |
1057 TextChangedI After a change was made to the text in the | |
1058 current buffer in Insert mode. | |
1059 Not triggered when the popup menu is visible. | |
1060 Otherwise the same as TextChanged. | |
13240
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1061 *TextChangedP* |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1062 TextChangedP After a change was made to the text in the |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1063 current buffer in Insert mode, only when the |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1064 popup menu is visible. Otherwise the same as |
5ed6e4a25925
patch 8.0.1494: no autocmd triggered in Insert mode with visible popup menu
Christian Brabandt <cb@256bit.org>
parents:
13231
diff
changeset
|
1065 TextChanged. |
13051 | 1066 *TextYankPost* |
13037
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1067 TextYankPost After text has been yanked or deleted in the |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1068 current buffer. The following values of |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1069 |v:event| can be used to determine the operation |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1070 that triggered this autocmd: |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1071 operator The operation performed. |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1072 regcontents Text that was stored in the |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1073 register, as a list of lines, |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1074 like with: > |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1075 getreg(r, 1, 1) |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1076 < regname Name of the |register| or |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1077 empty string for the unnamed |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1078 register. |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1079 regtype Type of the register, see |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1080 |getregtype()|. |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1081 Not triggered when |quote_| is used nor when |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1082 called recursively. |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1083 It is not allowed to change the buffer text, |
6e81a68d63a1
patch 8.0.1394: cannot intercept a yank command
Christian Brabandt <cb@256bit.org>
parents:
12785
diff
changeset
|
1084 see |textlock|. |
13437 | 1085 {only when compiled with the +eval feature} |
579 | 1086 *User* |
1087 User Never executed automatically. To be used for | |
1088 autocommands that are only executed with | |
1089 ":doautocmd". | |
13735 | 1090 Note that when `:doautocmd User MyEvent` is |
1091 used while there are no matching autocommands, | |
1092 you will get an error. If you don't want | |
1093 that, define a dummy autocommand yourself. | |
579 | 1094 *UserGettingBored* |
4264 | 1095 UserGettingBored When the user presses the same key 42 times. |
1096 Just kidding! :-) | |
579 | 1097 *VimEnter* |
1098 VimEnter After doing all the startup stuff, including | |
1099 loading .vimrc files, executing the "-c cmd" | |
1100 arguments, creating all windows and loading | |
1101 the buffers in them. | |
8738
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1102 Just before this event is triggered the |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1103 |v:vim_did_enter| variable is set, so that you |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1104 can do: > |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1105 if v:vim_did_enter |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1106 call s:init() |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1107 else |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1108 au VimEnter * call s:init() |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1109 endif |
e770986c855a
commit https://github.com/vim/vim/commit/1473551a4457d4920b235eeeb9f279e196ee7225
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
1110 < *VimLeave* |
579 | 1111 VimLeave Before exiting Vim, just after writing the |
1112 .viminfo file. Executed only once, like | |
1113 VimLeavePre. | |
1114 To detect an abnormal exit use |v:dying|. | |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1115 When v:dying is 2 or more this event is not |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1116 triggered. |
579 | 1117 *VimLeavePre* |
1118 VimLeavePre Before exiting Vim, just before writing the | |
1119 .viminfo file. This is executed only once, | |
1120 if there is a match with the name of what | |
1121 happens to be the current buffer when exiting. | |
1122 Mostly useful with a "*" pattern. > | |
1123 :autocmd VimLeavePre * call CleanupStuff() | |
1124 < To detect an abnormal exit use |v:dying|. | |
2226
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1125 When v:dying is 2 or more this event is not |
36a9ac99e1ca
Don't execute some autocommands when v:dying is 2 or more.
Bram Moolenaar <bram@vim.org>
parents:
2154
diff
changeset
|
1126 triggered. |
766 | 1127 *VimResized* |
1128 VimResized After the Vim window was resized, thus 'lines' | |
1129 and/or 'columns' changed. Not when starting | |
1130 up though. | |
7 | 1131 *WinEnter* |
1132 WinEnter After entering another window. Not done for | |
1133 the first window, when Vim has just started. | |
1134 Useful for setting the window height. | |
1135 If the window is for another buffer, Vim | |
1136 executes the BufEnter autocommands after the | |
1137 WinEnter autocommands. | |
13735 | 1138 Note: For split and tabpage commands the |
1139 WinEnter event is triggered after the split | |
1140 or tab command but before the file is loaded. | |
1141 | |
7 | 1142 *WinLeave* |
1143 WinLeave Before leaving a window. If the window to be | |
1144 entered next is for a different buffer, Vim | |
1145 executes the BufLeave autocommands before the | |
1146 WinLeave autocommands (but not for ":new"). | |
1147 Not used for ":qa" or ":q" when exiting Vim. | |
1148 | |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1149 *WinNew* |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1150 WinNew When a new window was created. Not done for |
10218
584c835a2de1
commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
1151 the first window, when Vim has just started. |
9599
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1152 Before a WinEnter event. |
42a8a81decdf
commit https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Christian Brabandt <cb@256bit.org>
parents:
9595
diff
changeset
|
1153 |
7 | 1154 ============================================================================== |
1155 6. Patterns *autocmd-patterns* *{pat}* | |
1156 | |
6741 | 1157 The {pat} argument can be a comma separated list. This works as if the |
1158 command was given with each pattern separately. Thus this command: > | |
1159 :autocmd BufRead *.txt,*.info set et | |
1160 Is equivalent to: > | |
1161 :autocmd BufRead *.txt set et | |
1162 :autocmd BufRead *.info set et | |
1163 | |
7 | 1164 The file pattern {pat} is tested for a match against the file name in one of |
1165 two ways: | |
1166 1. When there is no '/' in the pattern, Vim checks for a match against only | |
1167 the tail part of the file name (without its leading directory path). | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
1168 2. When there is a '/' in the pattern, Vim checks for a match against both the |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
1169 short file name (as you typed it) and the full file name (after expanding |
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
1170 it to a full path and resolving symbolic links). |
7 | 1171 |
40 | 1172 The special pattern <buffer> or <buffer=N> is used for buffer-local |
1173 autocommands |autocmd-buflocal|. This pattern is not matched against the name | |
1174 of a buffer. | |
1175 | |
7 | 1176 Examples: > |
1177 :autocmd BufRead *.txt set et | |
1178 Set the 'et' option for all text files. > | |
1179 | |
1180 :autocmd BufRead /vim/src/*.c set cindent | |
1181 Set the 'cindent' option for C files in the /vim/src directory. > | |
1182 | |
1183 :autocmd BufRead /tmp/*.c set ts=5 | |
1184 If you have a link from "/tmp/test.c" to "/home/nobody/vim/src/test.c", and | |
1185 you start editing "/tmp/test.c", this autocommand will match. | |
1186 | |
1187 Note: To match part of a path, but not from the root directory, use a '*' as | |
1188 the first character. Example: > | |
1189 :autocmd BufRead */doc/*.txt set tw=78 | |
1190 This autocommand will for example be executed for "/tmp/doc/xx.txt" and | |
1191 "/usr/home/piet/doc/yy.txt". The number of directories does not matter here. | |
1192 | |
1193 | |
1194 The file name that the pattern is matched against is after expanding | |
1621 | 1195 wildcards. Thus if you issue this command: > |
7 | 1196 :e $ROOTDIR/main.$EXT |
1197 The argument is first expanded to: > | |
1198 /usr/root/main.py | |
1199 Before it's matched with the pattern of the autocommand. Careful with this | |
1200 when using events like FileReadCmd, the value of <amatch> may not be what you | |
1201 expect. | |
1202 | |
1203 | |
1204 Environment variables can be used in a pattern: > | |
1205 :autocmd BufRead $VIMRUNTIME/doc/*.txt set expandtab | |
1206 And ~ can be used for the home directory (if $HOME is defined): > | |
1207 :autocmd BufWritePost ~/.vimrc so ~/.vimrc | |
1208 :autocmd BufRead ~archive/* set readonly | |
1209 The environment variable is expanded when the autocommand is defined, not when | |
1210 the autocommand is executed. This is different from the command! | |
1211 | |
1212 *file-pattern* | |
1213 The pattern is interpreted like mostly used in file names: | |
5294 | 1214 * matches any sequence of characters; Unusual: includes path |
5277 | 1215 separators |
7 | 1216 ? matches any single character |
1217 \? matches a '?' | |
1218 . matches a '.' | |
1219 ~ matches a '~' | |
1220 , separates patterns | |
1221 \, matches a ',' | |
1222 { } like \( \) in a |pattern| | |
1223 , inside { }: like \| in a |pattern| | |
5259
6b7ab6a4f31a
updated for version 7.4b.006
Bram Moolenaar <bram@vim.org>
parents:
5247
diff
changeset
|
1224 \} literal } |
6b7ab6a4f31a
updated for version 7.4b.006
Bram Moolenaar <bram@vim.org>
parents:
5247
diff
changeset
|
1225 \{ literal { |
6b7ab6a4f31a
updated for version 7.4b.006
Bram Moolenaar <bram@vim.org>
parents:
5247
diff
changeset
|
1226 \\\{n,m\} like \{n,m} in a |pattern| |
7 | 1227 \ special meaning like in a |pattern| |
1228 [ch] matches 'c' or 'h' | |
1229 [^ch] match any character but 'c' and 'h' | |
1230 | |
1231 Note that for all systems the '/' character is used for path separator (even | |
1232 MS-DOS and OS/2). This was done because the backslash is difficult to use | |
1233 in a pattern and to make the autocommands portable across different systems. | |
1234 | |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1235 It is possible to use |pattern| items, but they may not work as expected, |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1236 because of the translation done for the above. |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1237 |
40 | 1238 *autocmd-changes* |
7 | 1239 Matching with the pattern is done when an event is triggered. Changing the |
1240 buffer name in one of the autocommands, or even deleting the buffer, does not | |
1241 change which autocommands will be executed. Example: > | |
1242 | |
1243 au BufEnter *.foo bdel | |
1244 au BufEnter *.foo set modified | |
1245 | |
1246 This will delete the current buffer and then set 'modified' in what has become | |
1247 the current buffer instead. Vim doesn't take into account that "*.foo" | |
1248 doesn't match with that buffer name. It matches "*.foo" with the name of the | |
1249 buffer at the moment the event was triggered. | |
1250 | |
40 | 1251 However, buffer-local autocommands will not be executed for a buffer that has |
1252 been wiped out with |:bwipe|. After deleting the buffer with |:bdel| the | |
1253 buffer actually still exists (it becomes unlisted), thus the autocommands are | |
1254 still executed. | |
1255 | |
7 | 1256 ============================================================================== |
856 | 1257 7. Buffer-local autocommands *autocmd-buflocal* *autocmd-buffer-local* |
1258 *<buffer=N>* *<buffer=abuf>* *E680* | |
40 | 1259 |
1260 Buffer-local autocommands are attached to a specific buffer. They are useful | |
1261 if the buffer does not have a name and when the name does not match a specific | |
1262 pattern. But it also means they must be explicitly added to each buffer. | |
1263 | |
1264 Instead of a pattern buffer-local autocommands use one of these forms: | |
1265 <buffer> current buffer | |
1266 <buffer=99> buffer number 99 | |
1267 <buffer=abuf> using <abuf> (only when executing autocommands) | |
1268 |<abuf>| | |
1269 | |
1270 Examples: > | |
1271 :au CursorHold <buffer> echo 'hold' | |
1272 :au CursorHold <buffer=33> echo 'hold' | |
7051
eff26a8620ce
commit https://github.com/vim/vim/commit/88774fdd23f08355297bb8cda78856859051d3c7
Christian Brabandt <cb@256bit.org>
parents:
7013
diff
changeset
|
1273 :au BufNewFile * au CursorHold <buffer=abuf> echo 'hold' |
40 | 1274 |
1275 All the commands for autocommands also work with buffer-local autocommands, | |
1276 simply use the special string instead of the pattern. Examples: > | |
856 | 1277 :au! * <buffer> " remove buffer-local autocommands for |
1278 " current buffer | |
1279 :au! * <buffer=33> " remove buffer-local autocommands for | |
1280 " buffer #33 | |
1621 | 1281 :bufdo :au! CursorHold <buffer> " remove autocmd for given event for all |
856 | 1282 " buffers |
1283 :au * <buffer> " list buffer-local autocommands for | |
1284 " current buffer | |
40 | 1285 |
1286 Note that when an autocommand is defined for the current buffer, it is stored | |
1287 with the buffer number. Thus it uses the form "<buffer=12>", where 12 is the | |
1288 number of the current buffer. You will see this when listing autocommands, | |
1289 for example. | |
1290 | |
1291 To test for presence of buffer-local autocommands use the |exists()| function | |
1292 as follows: > | |
1293 :if exists("#CursorHold#<buffer=12>") | ... | endif | |
1294 :if exists("#CursorHold#<buffer>") | ... | endif " for current buffer | |
1295 | |
1296 When a buffer is wiped out its buffer-local autocommands are also gone, of | |
1297 course. Note that when deleting a buffer, e.g., with ":bdel", it is only | |
1298 unlisted, the autocommands are still present. In order to see the removal of | |
1299 buffer-local autocommands: > | |
1300 :set verbose=6 | |
1301 | |
1302 It is not possible to define buffer-local autocommands for a non-existent | |
1303 buffer. | |
1304 | |
1305 ============================================================================== | |
1306 8. Groups *autocmd-groups* | |
7 | 1307 |
1308 Autocommands can be put together in a group. This is useful for removing or | |
1309 executing a group of autocommands. For example, all the autocommands for | |
1310 syntax highlighting are put in the "highlight" group, to be able to execute | |
1311 ":doautoall highlight BufRead" when the GUI starts. | |
1312 | |
1313 When no specific group is selected, Vim uses the default group. The default | |
1314 group does not have a name. You cannot execute the autocommands from the | |
1315 default group separately; you can execute them only by executing autocommands | |
1316 for all groups. | |
1317 | |
1318 Normally, when executing autocommands automatically, Vim uses the autocommands | |
1319 for all groups. The group only matters when executing autocommands with | |
1320 ":doautocmd" or ":doautoall", or when defining or deleting autocommands. | |
1321 | |
1322 The group name can contain any characters except white space. The group name | |
1323 "end" is reserved (also in uppercase). | |
1324 | |
1325 The group name is case sensitive. Note that this is different from the event | |
1326 name! | |
1327 | |
1328 *:aug* *:augroup* | |
1329 :aug[roup] {name} Define the autocmd group name for the | |
1330 following ":autocmd" commands. The name "end" | |
1331 or "END" selects the default group. | |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
7051
diff
changeset
|
1332 To avoid confusion, the name should be |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
7051
diff
changeset
|
1333 different from existing {event} names, as this |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
7051
diff
changeset
|
1334 most likely will not do what you intended. |
7 | 1335 |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1336 *:augroup-delete* *E367* *W19* *E936* |
7 | 1337 :aug[roup]! {name} Delete the autocmd group {name}. Don't use |
1338 this if there is still an autocommand using | |
9737
35ce559b8553
commit https://github.com/vim/vim/commit/bc8801c9317eb721a2ee91322669f2dd5d136380
Christian Brabandt <cb@256bit.org>
parents:
9653
diff
changeset
|
1339 this group! You will get a warning if doing |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1340 it anyway. when the group is the current group |
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
9737
diff
changeset
|
1341 you will get error E936. |
7 | 1342 |
1343 To enter autocommands for a specific group, use this method: | |
1344 1. Select the group with ":augroup {name}". | |
1345 2. Delete any old autocommands with ":au!". | |
1346 3. Define the autocommands. | |
1347 4. Go back to the default group with "augroup END". | |
1348 | |
1349 Example: > | |
1350 :augroup uncompress | |
1351 : au! | |
1352 : au BufEnter *.gz %!gunzip | |
1353 :augroup END | |
1354 | |
1355 This prevents having the autocommands defined twice (e.g., after sourcing the | |
1356 .vimrc file again). | |
1357 | |
1358 ============================================================================== | |
40 | 1359 9. Executing autocommands *autocmd-execute* |
7 | 1360 |
1361 Vim can also execute Autocommands non-automatically. This is useful if you | |
1362 have changed autocommands, or when Vim has executed the wrong autocommands | |
1363 (e.g., the file pattern match was wrong). | |
1364 | |
1365 Note that the 'eventignore' option applies here too. Events listed in this | |
1366 option will not cause any commands to be executed. | |
1367 | |
16944 | 1368 *:do* *:doau* *:doaut* *:doautocmd* *E217* |
3356 | 1369 :do[autocmd] [<nomodeline>] [group] {event} [fname] |
7 | 1370 Apply the autocommands matching [fname] (default: |
1371 current file name) for {event} to the current buffer. | |
1372 You can use this when the current file name does not | |
1373 match the right pattern, after changing settings, or | |
1374 to execute autocommands for a certain event. | |
1375 It's possible to use this inside an autocommand too, | |
1376 so you can base the autocommands for one extension on | |
1377 another extension. Example: > | |
3224 | 1378 :au BufEnter *.cpp so ~/.vimrc_cpp |
1379 :au BufEnter *.cpp doau BufEnter x.c | |
7 | 1380 < Be careful to avoid endless loops. See |
1381 |autocmd-nested|. | |
1382 | |
1383 When the [group] argument is not given, Vim executes | |
1384 the autocommands for all groups. When the [group] | |
1385 argument is included, Vim executes only the matching | |
1386 autocommands for that group. Note: if you use an | |
1387 undefined group name, Vim gives you an error message. | |
3350 | 1388 *<nomodeline>* |
1389 After applying the autocommands the modelines are | |
1390 processed, so that their settings overrule the | |
1391 settings from autocommands, like what happens when | |
1392 editing a file. This is skipped when the <nomodeline> | |
1393 argument is present. You probably want to use | |
1394 <nomodeline> for events that are not used when loading | |
1395 a buffer, such as |User|. | |
9286
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
8951
diff
changeset
|
1396 Processing modelines is also skipped when no |
64035abb986b
commit https://github.com/vim/vim/commit/c95a302a4c42ec8230473cd4a5e0064d0a143aa8
Christian Brabandt <cb@256bit.org>
parents:
8951
diff
changeset
|
1397 matching autocommands were executed. |
7 | 1398 |
1399 *:doautoa* *:doautoall* | |
3342 | 1400 :doautoa[ll] [<nomodeline>] [group] {event} [fname] |
7 | 1401 Like ":doautocmd", but apply the autocommands to each |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1919
diff
changeset
|
1402 loaded buffer. Note that [fname] is used to select |
7 | 1403 the autocommands, not the buffers to which they are |
1404 applied. | |
1405 Careful: Don't use this for autocommands that delete a | |
1406 buffer, change to another buffer or change the | |
1407 contents of a buffer; the result is unpredictable. | |
1408 This command is intended for autocommands that set | |
1409 options, change highlighting, and things like that. | |
1410 | |
1411 ============================================================================== | |
40 | 1412 10. Using autocommands *autocmd-use* |
7 | 1413 |
1414 For WRITING FILES there are four possible sets of events. Vim uses only one | |
1415 of these sets for a write command: | |
1416 | |
1417 BufWriteCmd BufWritePre BufWritePost writing the whole buffer | |
1418 FilterWritePre FilterWritePost writing to filter temp file | |
1419 FileAppendCmd FileAppendPre FileAppendPost appending to a file | |
1420 FileWriteCmd FileWritePre FileWritePost any other file write | |
1421 | |
1422 When there is a matching "*Cmd" autocommand, it is assumed it will do the | |
1423 writing. No further writing is done and the other events are not triggered. | |
1424 |Cmd-event| | |
1425 | |
1426 Note that the *WritePost commands should undo any changes to the buffer that | |
1427 were caused by the *WritePre commands; otherwise, writing the file will have | |
1428 the side effect of changing the buffer. | |
1429 | |
1430 Before executing the autocommands, the buffer from which the lines are to be | |
1431 written temporarily becomes the current buffer. Unless the autocommands | |
1432 change the current buffer or delete the previously current buffer, the | |
1433 previously current buffer is made the current buffer again. | |
1434 | |
1435 The *WritePre and *AppendPre autocommands must not delete the buffer from | |
1436 which the lines are to be written. | |
1437 | |
1438 The '[ and '] marks have a special position: | |
1439 - Before the *ReadPre event the '[ mark is set to the line just above where | |
1440 the new lines will be inserted. | |
1441 - Before the *ReadPost event the '[ mark is set to the first line that was | |
1442 just read, the '] mark to the last line. | |
26 | 1443 - Before executing the *WriteCmd, *WritePre and *AppendPre autocommands the '[ |
1444 mark is set to the first line that will be written, the '] mark to the last | |
1445 line. | |
7 | 1446 Careful: '[ and '] change when using commands that change the buffer. |
1447 | |
1448 In commands which expect a file name, you can use "<afile>" for the file name | |
1449 that is being read |:<afile>| (you can also use "%" for the current file | |
1450 name). "<abuf>" can be used for the buffer number of the currently effective | |
14123 | 1451 buffer. This also works for buffers that don't have a name. But it doesn't |
7 | 1452 work for files without a buffer (e.g., with ":r file"). |
1453 | |
1454 *gzip-example* | |
1455 Examples for reading and writing compressed files: > | |
1456 :augroup gzip | |
1457 : autocmd! | |
1458 : autocmd BufReadPre,FileReadPre *.gz set bin | |
1459 : autocmd BufReadPost,FileReadPost *.gz '[,']!gunzip | |
1460 : autocmd BufReadPost,FileReadPost *.gz set nobin | |
1461 : autocmd BufReadPost,FileReadPost *.gz execute ":doautocmd BufReadPost " . expand("%:r") | |
1462 : autocmd BufWritePost,FileWritePost *.gz !mv <afile> <afile>:r | |
1463 : autocmd BufWritePost,FileWritePost *.gz !gzip <afile>:r | |
1464 | |
1465 : autocmd FileAppendPre *.gz !gunzip <afile> | |
1466 : autocmd FileAppendPre *.gz !mv <afile>:r <afile> | |
1467 : autocmd FileAppendPost *.gz !mv <afile> <afile>:r | |
1468 : autocmd FileAppendPost *.gz !gzip <afile>:r | |
1469 :augroup END | |
1470 | |
1471 The "gzip" group is used to be able to delete any existing autocommands with | |
1472 ":autocmd!", for when the file is sourced twice. | |
1473 | |
1474 ("<afile>:r" is the file name without the extension, see |:_%:|) | |
1475 | |
1476 The commands executed for the BufNewFile, BufRead/BufReadPost, BufWritePost, | |
1477 FileAppendPost and VimLeave events do not set or reset the changed flag of the | |
1478 buffer. When you decompress the buffer with the BufReadPost autocommands, you | |
1479 can still exit with ":q". When you use ":undo" in BufWritePost to undo the | |
1480 changes made by BufWritePre commands, you can still do ":q" (this also makes | |
1481 "ZZ" work). If you do want the buffer to be marked as modified, set the | |
1482 'modified' option. | |
1483 | |
1484 To execute Normal mode commands from an autocommand, use the ":normal" | |
1485 command. Use with care! If the Normal mode command is not finished, the user | |
1486 needs to type characters (e.g., after ":normal m" you need to type a mark | |
1487 name). | |
1488 | |
1489 If you want the buffer to be unmodified after changing it, reset the | |
1490 'modified' option. This makes it possible to exit the buffer with ":q" | |
1491 instead of ":q!". | |
1492 | |
1493 *autocmd-nested* *E218* | |
16023 | 1494 By default, autocommands do not nest. For example, if you use ":e" or ":w" in |
1495 an autocommand, Vim does not execute the BufRead and BufWrite autocommands for | |
7 | 1496 those commands. If you do want this, use the "nested" flag for those commands |
1497 in which you want nesting. For example: > | |
16217
81e6940504e8
patch 8.1.1113: making an autocommand trigger once is not so easy
Bram Moolenaar <Bram@vim.org>
parents:
16023
diff
changeset
|
1498 :autocmd FileChangedShell *.c ++nested e! |
7 | 1499 The nesting is limited to 10 levels to get out of recursive loops. |
1500 | |
1501 It's possible to use the ":au" command in an autocommand. This can be a | |
1502 self-modifying command! This can be useful for an autocommand that should | |
1503 execute only once. | |
1504 | |
590 | 1505 If you want to skip autocommands for one command, use the |:noautocmd| command |
1506 modifier or the 'eventignore' option. | |
7 | 1507 |
1508 Note: When reading a file (with ":read file" or with a filter command) and the | |
1509 last line in the file does not have an <EOL>, Vim remembers this. At the next | |
1510 write (with ":write file" or with a filter command), if the same line is | |
1511 written again as the last line in a file AND 'binary' is set, Vim does not | |
1512 supply an <EOL>. This makes a filter command on the just read lines write the | |
1513 same file as was read, and makes a write command on just filtered lines write | |
1514 the same file as was read from the filter. For example, another way to write | |
1515 a compressed file: > | |
1516 | |
1517 :autocmd FileWritePre *.gz set bin|'[,']!gzip | |
1518 :autocmd FileWritePost *.gz undo|set nobin | |
1519 < | |
1520 *autocommand-pattern* | |
1521 You can specify multiple patterns, separated by commas. Here are some | |
1522 examples: > | |
1523 | |
1524 :autocmd BufRead * set tw=79 nocin ic infercase fo=2croq | |
1525 :autocmd BufRead .letter set tw=72 fo=2tcrq | |
1526 :autocmd BufEnter .letter set dict=/usr/lib/dict/words | |
1527 :autocmd BufLeave .letter set dict= | |
1528 :autocmd BufRead,BufNewFile *.c,*.h set tw=0 cin noic | |
1529 :autocmd BufEnter *.c,*.h abbr FOR for (i = 0; i < 3; ++i)<CR>{<CR>}<Esc>O | |
1530 :autocmd BufLeave *.c,*.h unabbr FOR | |
1531 | |
1532 For makefiles (makefile, Makefile, imakefile, makefile.unix, etc.): > | |
1533 | |
1534 :autocmd BufEnter ?akefile* set include=^s\=include | |
1535 :autocmd BufLeave ?akefile* set include& | |
1536 | |
1537 To always start editing C files at the first function: > | |
1538 | |
1539 :autocmd BufRead *.c,*.h 1;/^{ | |
1540 | |
1541 Without the "1;" above, the search would start from wherever the file was | |
1542 entered, rather than from the start of the file. | |
1543 | |
1544 *skeleton* *template* | |
1545 To read a skeleton (template) file when opening a new file: > | |
1546 | |
1547 :autocmd BufNewFile *.c 0r ~/vim/skeleton.c | |
1548 :autocmd BufNewFile *.h 0r ~/vim/skeleton.h | |
1549 :autocmd BufNewFile *.java 0r ~/vim/skeleton.java | |
1550 | |
1551 To insert the current date and time in a *.html file when writing it: > | |
1552 | |
1553 :autocmd BufWritePre,FileWritePre *.html ks|call LastMod()|'s | |
1554 :fun LastMod() | |
1555 : if line("$") > 20 | |
1556 : let l = 20 | |
1557 : else | |
1558 : let l = line("$") | |
1559 : endif | |
1560 : exe "1," . l . "g/Last modified: /s/Last modified: .*/Last modified: " . | |
1561 : \ strftime("%Y %b %d") | |
1562 :endfun | |
1563 | |
1564 You need to have a line "Last modified: <date time>" in the first 20 lines | |
1565 of the file for this to work. Vim replaces <date time> (and anything in the | |
1566 same line after it) with the current date and time. Explanation: | |
1567 ks mark current position with mark 's' | |
1568 call LastMod() call the LastMod() function to do the work | |
1569 's return the cursor to the old position | |
1570 The LastMod() function checks if the file is shorter than 20 lines, and then | |
1571 uses the ":g" command to find lines that contain "Last modified: ". For those | |
1572 lines the ":s" command is executed to replace the existing date with the | |
1573 current one. The ":execute" command is used to be able to use an expression | |
1574 for the ":g" and ":s" commands. The date is obtained with the strftime() | |
1575 function. You can change its argument to get another date string. | |
1576 | |
1577 When entering :autocmd on the command-line, completion of events and command | |
1578 names may be done (with <Tab>, CTRL-D, etc.) where appropriate. | |
1579 | |
1580 Vim executes all matching autocommands in the order that you specify them. | |
1581 It is recommended that your first autocommand be used for all files by using | |
1582 "*" as the file pattern. This means that you can define defaults you like | |
1583 here for any settings, and if there is another matching autocommand it will | |
1584 override these. But if there is no other matching autocommand, then at least | |
1585 your default settings are recovered (if entering this file from another for | |
1586 which autocommands did match). Note that "*" will also match files starting | |
1587 with ".", unlike Unix shells. | |
1588 | |
1589 *autocmd-searchpat* | |
1590 Autocommands do not change the current search patterns. Vim saves the current | |
1591 search patterns before executing autocommands then restores them after the | |
1592 autocommands finish. This means that autocommands do not affect the strings | |
1593 highlighted with the 'hlsearch' option. Within autocommands, you can still | |
1594 use search patterns normally, e.g., with the "n" command. | |
1595 If you want an autocommand to set the search pattern, such that it is used | |
1596 after the autocommand finishes, use the ":let @/ =" command. | |
1597 The search-highlighting cannot be switched off with ":nohlsearch" in an | |
1598 autocommand. Use the 'h' flag in the 'viminfo' option to disable search- | |
1599 highlighting when starting Vim. | |
1600 | |
1601 *Cmd-event* | |
1602 When using one of the "*Cmd" events, the matching autocommands are expected to | |
1061 | 1603 do the file reading, writing or sourcing. This can be used when working with |
1604 a special kind of file, for example on a remote system. | |
7 | 1605 CAREFUL: If you use these events in a wrong way, it may have the effect of |
1606 making it impossible to read or write the matching files! Make sure you test | |
1607 your autocommands properly. Best is to use a pattern that will never match a | |
1608 normal file name, for example "ftp://*". | |
1609 | |
1610 When defining a BufReadCmd it will be difficult for Vim to recover a crashed | |
1611 editing session. When recovering from the original file, Vim reads only those | |
1612 parts of a file that are not found in the swap file. Since that is not | |
1613 possible with a BufReadCmd, use the |:preserve| command to make sure the | |
1614 original file isn't needed for recovery. You might want to do this only when | |
1615 you expect the file to be modified. | |
1616 | |
1061 | 1617 For file read and write commands the |v:cmdarg| variable holds the "++enc=" |
1618 and "++ff=" argument that are effective. These should be used for the command | |
1619 that reads/writes the file. The |v:cmdbang| variable is one when "!" was | |
1620 used, zero otherwise. | |
7 | 1621 |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2345
diff
changeset
|
1622 See the $VIMRUNTIME/plugin/netrwPlugin.vim for examples. |
7 | 1623 |
590 | 1624 ============================================================================== |
1625 11. Disabling autocommands *autocmd-disable* | |
1626 | |
1627 To disable autocommands for some time use the 'eventignore' option. Note that | |
1628 this may cause unexpected behavior, make sure you restore 'eventignore' | |
1629 afterwards, using a |:try| block with |:finally|. | |
1630 | |
1631 *:noautocmd* *:noa* | |
1632 To disable autocommands for just one command use the ":noautocmd" command | |
1633 modifier. This will set 'eventignore' to "all" for the duration of the | |
1634 following command. Example: > | |
1635 | |
1636 :noautocmd w fname.gz | |
1637 | |
1638 This will write the file without triggering the autocommands defined by the | |
1639 gzip plugin. | |
1640 | |
16023 | 1641 Note that some autocommands are not triggered right away, but only later. |
1642 This specifically applies to |CursorMoved| and |TextChanged|. | |
1643 | |
40 | 1644 |
14421 | 1645 vim:tw=78:ts=8:noet:ft=help:norl: |