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