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