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