blob: a775af03a61a82c99266a64a4699e0ac5fe4f967 [file] [log] [blame]
Bram Moolenaar6f4754b2022-01-23 12:07:04 +00001*repeat.txt* For Vim version 8.2. Last change: 2022 Jan 21
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Repeating commands, Vim scripts and debugging *repeating*
8
9Chapter 26 of the user manual introduces repeating |usr_26.txt|.
10
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100111. Single repeats |single-repeat|
122. Multiple repeats |multi-repeat|
133. Complex repeats |complex-repeat|
144. Using Vim scripts |using-scripts|
155. Using Vim packages |packages|
166. Creating Vim packages |package-create|
177. Debugging scripts |debug-scripts|
188. Profiling |profiling|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20==============================================================================
211. Single repeats *single-repeat*
22
23 *.*
24. Repeat last change, with count replaced with [count].
25 Also repeat a yank command, when the 'y' flag is
Bram Moolenaard4755bb2004-09-02 19:12:26 +000026 included in 'cpoptions'. Does not repeat a
27 command-line command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
29Simple changes can be repeated with the "." command. Without a count, the
30count of the last change is used. If you enter a count, it will replace the
Bram Moolenaar92dff182014-02-11 19:15:50 +010031last one. |v:count| and |v:count1| will be set.
32
33If the last change included a specification of a numbered register, the
34register number will be incremented. See |redo-register| for an example how
35to use this.
36
37Note that when repeating a command that used a Visual selection, the same SIZE
38of area is used, see |visual-repeat|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
40 *@:*
41@: Repeat last command-line [count] times.
42 {not available when compiled without the
43 |+cmdline_hist| feature}
44
45
46==============================================================================
472. Multiple repeats *multi-repeat*
48
Bram Moolenaarf84b1222017-06-10 14:29:52 +020049 *:g* *:global* *E148*
Bram Moolenaar071d4272004-06-13 20:20:40 +000050:[range]g[lobal]/{pattern}/[cmd]
51 Execute the Ex command [cmd] (default ":p") on the
52 lines within [range] where {pattern} matches.
53
54:[range]g[lobal]!/{pattern}/[cmd]
55 Execute the Ex command [cmd] (default ":p") on the
56 lines within [range] where {pattern} does NOT match.
57
58 *:v* *:vglobal*
59:[range]v[global]/{pattern}/[cmd]
60 Same as :g!.
61
Bram Moolenaar3ec32172021-05-16 12:39:47 +020062Example: >
63 :g/^Obsolete/d _
64Using the underscore after `:d` avoids clobbering registers or the clipboard.
65This also makes it faster.
66
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000067Instead of the '/' which surrounds the {pattern}, you can use any other
Bram Moolenaare2db6952013-07-24 19:53:36 +020068single byte character, but not an alphabetic character, '\', '"' or '|'.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000069This is useful if you want to include a '/' in the search pattern or
70replacement string.
71
72For the definition of a pattern, see |pattern|.
73
Bram Moolenaar32efaf62014-11-05 17:02:17 +010074NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for
75examples.
76
Bram Moolenaar071d4272004-06-13 20:20:40 +000077The global commands work by first scanning through the [range] lines and
78marking each line where a match occurs (for a multi-line pattern, only the
79start of the match matters).
Bram Moolenaar03413f42016-04-12 21:07:15 +020080In a second scan the [cmd] is executed for each marked line, as if the cursor
81was in that line. For ":v" and ":g!" the command is executed for each not
Bram Moolenaar071d4272004-06-13 20:20:40 +000082marked line. If a line is deleted its mark disappears.
83The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt
84the command. If an error message is given for a line, the command for that
85line is aborted and the global command continues with the next marked or
86unmarked line.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +010087 *E147*
Bram Moolenaarf84b1222017-06-10 14:29:52 +020088When the command is used recursively, it only works on one line. Giving a
89range is then not allowed. This is useful to find all lines that match a
90pattern and do not match another pattern: >
91 :g/found/v/notfound/{cmd}
92This first finds all lines containing "found", but only executes {cmd} when
93there is no match for "notfound".
Bram Moolenaar071d4272004-06-13 20:20:40 +000094
Bram Moolenaarf84b1222017-06-10 14:29:52 +020095To execute a non-Ex command, you can use the `:normal` command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000096 :g/pat/normal {commands}
97Make sure that {commands} ends with a whole command, otherwise Vim will wait
98for you to type the rest of the command for each match. The screen will not
99have been updated, so you don't know what you are doing. See |:normal|.
100
101The undo/redo command will undo/redo the whole global command at once.
102The previous context mark will only be set once (with "''" you go back to
103where the cursor was before the global command).
104
105The global command sets both the last used search pattern and the last used
106substitute pattern (this is vi compatible). This makes it easy to globally
107replace a string:
108 :g/pat/s//PAT/g
109This replaces all occurrences of "pat" with "PAT". The same can be done with:
110 :%s/pat/PAT/g
111Which is two characters shorter!
112
Bram Moolenaar864207d2008-06-24 22:14:38 +0000113When using "global" in Ex mode, a special case is using ":visual" as a
114command. This will move to a matching line, go to Normal mode to let you
115execute commands there until you use |Q| to return to Ex mode. This will be
116repeated for each matching line. While doing this you cannot use ":global".
117To abort this type CTRL-C twice.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000118
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119==============================================================================
1203. Complex repeats *complex-repeat*
121
122 *q* *recording*
123q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
124 (uppercase to append). The 'q' command is disabled
125 while executing a register, and it doesn't work inside
Bram Moolenaara0ed84a2015-11-19 17:56:13 +0100126 a mapping and |:normal|.
127
128 Note: If the register being used for recording is also
129 used for |y| and |p| the result is most likely not
130 what is expected, because the put will paste the
131 recorded macro and the yank will overwrite the
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200132 recorded macro.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200134 Note: The recording happens while you type, replaying
135 the register happens as if the keys come from a
136 mapping. This matters, for example, for undo, which
137 only syncs when commands were typed.
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139q Stops recording. (Implementation note: The 'q' that
140 stops recording is not stored in the register, unless
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200141 it was the result of a mapping)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
143 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200144@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145 times. Note that register '%' (name of the current
146 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100147 used.
148 The register is executed like a mapping, that means
149 that the difference between 'wildchar' and 'wildcharm'
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200150 applies, and undo might not be synced in the same way.
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100151 For "@=" you are prompted to enter an expression. The
152 result of the expression is then executed.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200153 See also |@:|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000155 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156@@ Repeat the previous @{0-9a-z":*} [count] times.
157
Bram Moolenaar3ec32172021-05-16 12:39:47 +0200158 *:@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200159:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 command. First set cursor at line [addr] (default is
161 current line). When the last line in the register does
162 not have a <CR> it will be added automatically when
163 the 'e' flag is present in 'cpoptions'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 For ":@=" the last used expression is used. The
165 result of evaluating the expression is executed as an
166 Ex command.
167 Mappings are not recognized in these commands.
Bram Moolenaar856c1112020-06-17 21:47:23 +0200168 When the |line-continuation| character (\) is present
169 at the beginning of a line in a linewise register,
170 then it is combined with the previous line. This is
171 useful for yanking and executing parts of a Vim
172 script.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200173 Future: Will execute the register for each line in the
174 address range.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175
Bram Moolenaar3ec32172021-05-16 12:39:47 +0200176:[addr]*{0-9a-z".=+} *:star-compatible*
177 When '*' is present in 'cpoptions' |cpo-star|, use
178 ":*" in the same way as ":@". This is NOT the default
179 when 'nocompatible' is used. When the '*' flag is not
180 present in 'cpoptions', ":*" is an alias for ":'<,'>",
181 select the Visual area |:star|.
182
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 *:@:*
184:[addr]@: Repeat last command-line. First set cursor at line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200185 [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200187:[addr]@ *:@@*
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200188:[addr]@@ Repeat the previous :@{register}. First set cursor at
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200189 line [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190
191==============================================================================
1924. Using Vim scripts *using-scripts*
193
194For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
195
196 *:so* *:source* *load-vim-script*
197:so[urce] {file} Read Ex commands from {file}. These are commands that
198 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000199 Triggers the |SourcePre| autocommand.
Yegappan Lakshmanan36a5b682022-03-19 12:56:51 +0000200
201:[range]so[urce] Read Ex commands from the [range] of lines in the
202 current buffer. When sourcing commands from the
203 current buffer, the same script-ID |<SID>| is used
204 even if the buffer is sourced multiple times.
205
Bram Moolenaar68e65602019-05-26 21:33:31 +0200206 *:source!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207:so[urce]! {file} Read Vim commands from {file}. These are commands
208 that are executed from Normal mode, like you type
209 them.
210 When used after |:global|, |:argdo|, |:windo|,
211 |:bufdo|, in a loop or when another command follows
212 the display won't be updated while executing the
213 commands.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200214 Cannot be used in the |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215
216 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100217:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100219 by 'runtimepath' and/or 'packpath'. There is no error
220 for non-existing files.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100221
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100222 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223 :runtime syntax/c.vim
224
225< There can be multiple {file} arguments, separated by
226 spaces. Each {file} is searched for in the first
227 directory from 'runtimepath', then in the second
228 directory, etc. Use a backslash to include a space
229 inside {file} (although it's better not to use spaces
230 in file names, it causes trouble).
231
232 When [!] is included, all found files are sourced.
233 When it is not included only the first found file is
234 sourced.
235
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100236 When [where] is omitted only 'runtimepath' is used.
237 Other values:
238 START search under "start" in 'packpath'
239 OPT search under "opt" in 'packpath'
240 PACK search under "start" and "opt" in
241 'packpath'
242 ALL first use 'runtimepath', then search
243 under "start" and "opt" in 'packpath'
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 When {file} contains wildcards it is expanded to all
246 matching files. Example: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200247 :runtime! plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000249 starting up. This similar command: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200250 :runtime plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251< would source the first file only.
252
253 When 'verbose' is one or higher, there is a message
254 when no file could be found.
255 When 'verbose' is two or higher, there is a message
256 about each searched file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100258 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100259:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
260 and source any plugin files found. The directory must
261 match:
262 pack/*/opt/{name} ~
263 The directory is added to 'runtimepath' if it wasn't
264 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200265 If the directory pack/*/opt/{name}/after exists it is
266 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100267
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100268 If loading packages from "pack/*/start" was skipped,
269 then this directory is searched first:
270 pack/*/start/{name} ~
271
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100272 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200273 of the .vim file. All the files matching the pattern
274 pack/*/opt/{name}/plugin/**/*.vim ~
275 will be sourced. This allows for using subdirectories
276 below "plugin", just like with plugins in
277 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100278
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100279 If the filetype detection was not enabled yet (this
280 is usually done with a "syntax enable" or "filetype
281 on" command in your .vimrc file), this will also look
282 for "{name}/ftdetect/*.vim" files.
283
284 When the optional ! is added no plugin files or
285 ftdetect scripts are loaded, only the matching
286 directories are added to 'runtimepath'. This is
287 useful in your .vimrc. The plugins will then be
Bram Moolenaar2346a632021-06-13 19:02:49 +0200288 loaded during initialization, see |load-plugins| (note
289 that the loading order will be reversed, because each
290 directory is inserted before others).
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200291 Note that for ftdetect scripts to be loaded
292 you will need to write `filetype plugin indent on`
293 AFTER all `packadd!` commands.
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100294
295 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200296 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100297
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100298 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200299:packl[oadall][!] Load all packages in the "start" directory under each
300 entry in 'packpath'.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100301
Bram Moolenaar03413f42016-04-12 21:07:15 +0200302 First all the directories found are added to
303 'runtimepath', then the plugins found in the
304 directories are sourced. This allows for a plugin to
305 depend on something of another plugin, e.g. an
306 "autoload" directory. See |packload-two-steps| for
307 how this can be useful.
308
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100309 This is normally done automatically during startup,
310 after loading your .vimrc file. With this command it
311 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200312
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200313 Packages will be loaded only once. Using
314 `:packloadall` a second time will have no effect.
315 When the optional ! is added this command will load
316 packages even when done before.
317
318 Note that when using `:packloadall` in the |vimrc|
319 file, the 'runtimepath' option is updated, and later
320 all plugins in 'runtimepath' will be loaded, which
321 means they are loaded again. Plugins are expected to
322 handle that.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200323
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200324 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100325 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100326 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200327 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100328
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
330 Specify the character encoding used in the script.
331 The following lines will be converted from [encoding]
332 to the value of the 'encoding' option, if they are
333 different. Examples: >
334 scriptencoding iso-8859-5
335 scriptencoding cp932
336<
337 When [encoding] is empty, no conversion is done. This
338 can be used to restrict conversion to a sequence of
339 lines: >
340 scriptencoding euc-jp
341 ... lines to be converted ...
342 scriptencoding
343 ... not converted ...
344
345< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200346 is no error message and no conversion is done. When a
347 line can't be converted there is no error and the
348 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
350 Don't use "ucs-2" or "ucs-4", scripts cannot be in
351 these encodings (they would contain NUL bytes).
352 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200353 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 to use ":scriptencoding utf-8" then.
355
Bram Moolenaar3df01732017-02-17 22:47:16 +0100356 If you set the 'encoding' option in your |.vimrc|,
357 `:scriptencoding` must be placed after that. E.g.: >
358 set encoding=utf-8
359 scriptencoding utf-8
360<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200362:scriptv[ersion] {version} *:scriptv* *:scriptversion*
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000363 *E999* *E984* *E1040*
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200364 Specify the version of Vim for the lines that follow
365 in the same file. Only applies at the toplevel of
366 sourced scripts, not inside functions.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200367
368 If {version} is higher than what the current Vim
369 version supports E999 will be given. You either need
370 to rewrite the script to make it work with an older
371 Vim version, or update Vim to a newer version. See
372 |vimscript-version| for what changed between versions.
373
Bram Moolenaarfd218c82022-01-18 16:26:24 +0000374:vim9s[cript] [noclear] *:vim9s* *:vim9script*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100375 Marks a script file as containing |Vim9-script|
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000376 commands. Also see |vim9-namespace|. *E1038*
377 Must be the first command in the file. *E1039*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100378 For [noclear] see |vim9-reload|.
379 Without the |+eval| feature this changes the syntax
380 for some commands.
Bram Moolenaar39f3b142021-02-14 12:57:36 +0100381 See |:vim9cmd| for executing one command with Vim9
382 syntax and semantics.
Bram Moolenaar2346a632021-06-13 19:02:49 +0200383
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100384 *:scr* *:scriptnames*
385:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaarfd218c82022-01-18 16:26:24 +0000386 first encountered. The number is used for the script
387 ID |<SID>|.
Bram Moolenaar6079da72022-01-18 14:16:59 +0000388 For a script that was used with `import autoload` but
389 was not actually sourced yet an "A" is shown after the
390 script ID.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200391 {not available when compiled without the |+eval|
392 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100394:scr[iptnames][!] {scriptId} *:script*
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100395 Edit script {scriptId}. Although ":scriptnames name"
396 works, using ":script name" is recommended.
397 When the current buffer can't be |abandon|ed and the !
398 is not present, the command fails.
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100399
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 *:fini* *:finish* *E168*
401:fini[sh] Stop sourcing a script. Can only be used in a Vim
402 script file. This is a quick way to skip the rest of
403 the file. If it is used after a |:try| but before the
404 matching |:finally| (if present), the commands
405 following the ":finally" up to the matching |:endtry|
406 are executed first. This process applies to all
407 nested ":try"s in the script. The outermost ":endtry"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200408 then stops sourcing the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
410All commands and command sequences can be repeated by putting them in a named
411register and then executing it. There are two ways to get the commands in the
412register:
413- Use the record command "q". You type the commands once, and while they are
414 being executed they are stored in a register. Easy, because you can see
415 what you are doing. If you make a mistake, "p"ut the register into the
416 file, edit the command sequence, and then delete it into the register
417 again. You can continue recording by appending to the register (use an
418 uppercase letter).
419- Delete or yank the command sequence into the register.
420
421Often used command sequences can be put under a function key with the ':map'
422command.
423
424An alternative is to put the commands in a file, and execute them with the
425':source!' command. Useful for long command sequences. Can be combined with
426the ':map' command to put complicated commands under a function key.
427
428The ':source' command reads Ex commands from a file line by line. You will
429have to type any needed keyboard input. The ':source!' command reads from a
430script file character by character, interpreting each character as if you
431typed it.
432
433Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
434you ':source' a file with the line "!ls" in it, you will have to type the
435<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
436the next characters from that file are read until a <CR> is found. You will
437not have to type <CR> yourself, unless ":!ls" was the last line in the file.
438
439It is possible to put ':source[!]' commands in the script file, so you can
440make a top-down hierarchy of script files. The ':source' command can be
441nested as deep as the number of files that can be opened at one time (about
44215). The ':source!' command can be nested up to 15 levels deep.
443
444You can use the "<sfile>" string (literally, this is not a special key) inside
445of the sourced file, in places where a file name is expected. It will be
446replaced by the file name of the sourced file. For example, if you have a
447"other.vimrc" file in the same directory as your ".vimrc" file, you can source
448it from your ".vimrc" file with this command: >
449 :source <sfile>:h/other.vimrc
450
451In script files terminal-dependent key codes are represented by
452terminal-independent two character codes. This means that they can be used
453in the same way on different kinds of terminals. The first character of a
454key code is 0x80 or 128, shown on the screen as "~@". The second one can be
455found in the list |key-notation|. Any of these codes can also be entered
456with CTRL-V followed by the three digit decimal code. This does NOT work for
457the <t_xx> termcap codes, these can only be used in mappings.
458
459 *:source_crnl* *W15*
Bram Moolenaar6f345a12019-12-17 21:27:18 +0100460Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s.
461These always work. If you are using a file with <NL> <EOL>s (for example, a
462file made on Unix), this will be recognized if 'fileformats' is not empty and
463the first line does not end in a <CR>. This fails if the first line has
464something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line
465ends in a <CR>, but following ones don't, you will get an error message,
466because the <CR> from the first lines will be lost.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
Bram Moolenaar520470a2005-06-16 21:59:56 +0000468Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000469These always work. If you are using a file with <NL> <EOL>s (for example, a
470file made on Unix), this will be recognized if 'fileformats' is not empty and
471the first line does not end in a <CR>. Be careful not to use a file with <NL>
472linebreaks which has a <CR> in first line.
473
474On other systems, Vim expects ":source"ed files to end in a <NL>. These
475always work. If you are using a file with <CR><NL> <EOL>s (for example, a
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100476file made on MS-Windows), all lines will have a trailing <CR>. This may cause
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477problems for some commands (e.g., mappings). There is no automatic <EOL>
478detection, because it's common to start with a line that defines a mapping
479that ends in a <CR>, which will confuse the automaton.
480
481 *line-continuation*
482Long lines in a ":source"d Ex command script file can be split by inserting
483a line continuation symbol "\" (backslash) at the start of the next line.
484There can be white space before the backslash, which is ignored.
485
486Example: the lines >
487 :set comments=sr:/*,mb:*,el:*/,
488 \://,
489 \b:#,
490 \:%,
491 \n:>,
492 \fb:-
493are interpreted as if they were given in one line:
494 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
495
496All leading whitespace characters in the line before a backslash are ignored.
497Note however that trailing whitespace in the line before it cannot be
498inserted freely; it depends on the position where a command is split up
499whether additional whitespace is allowed or not.
500
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100501When a space is required it's best to put it right after the backslash. A
502space at the end of a line is hard to see and may be accidentally deleted. >
503 :syn match Comment
504 \ "very long regexp"
505 \ keepend
506
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000507In |Vim9| script the backslash can often be omitted, but not always.
508See |vim9-line-continuation|.
509
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510There is a problem with the ":append" and ":insert" commands: >
511 :1append
512 \asdf
513 .
514The backslash is seen as a line-continuation symbol, thus this results in the
515command: >
516 :1appendasdf
517 .
518To avoid this, add the 'C' flag to the 'cpoptions' option: >
519 :set cpo+=C
520 :1append
521 \asdf
522 .
523 :set cpo-=C
524
525Note that when the commands are inside a function, you need to add the 'C'
526flag when defining the function, it is not relevant when executing it. >
527 :set cpo+=C
528 :function Foo()
529 :1append
530 \asdf
531 .
532 :endfunction
533 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200534<
535 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200536To add a comment in between the lines start with '"\ '. Notice the space
537after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200538 let array = [
539 "\ first entry comment
540 \ 'first',
541 "\ second entry comment
542 \ 'second',
543 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544
545Rationale:
546 Most programs work with a trailing backslash to indicate line
547 continuation. Using this in Vim would cause incompatibility with Vi.
548 For example for this Vi mapping: >
549 :map xx asdf\
550< Therefore the unusual leading backslash is used.
551
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200552 Starting a comment in a continuation line results in all following
553 continuation lines to be part of the comment. Since it was like this
554 for a long time, when making it possible to add a comment halfway a
555 sequence of continuation lines, it was not possible to use \", since
556 that was a valid continuation line. Using '"\ ' comes closest, even
557 though it may look a bit weird. Requiring the space after the
558 backslash is to make it very unlikely this is a normal comment line.
559
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01005615. Using Vim packages *packages*
562
563A Vim package is a directory that contains one or more plugins. The
564advantages over normal plugins:
565- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100566 Thus the files are not mixed with files of other plugins. That makes it
567 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100568- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100569 easy to update.
570- A package can contain multiple plugins that depend on each other.
571- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100572 ones that are only loaded when needed with `:packadd`.
573
574
575Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100576
577Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100578package from a zip archive "/tmp/foopack.zip":
579 % mkdir -p ~/.vim/pack/foo
580 % cd ~/.vim/pack/foo
581 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100582
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100583The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100584
585You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100586 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100587 pack/foo/start/foobar/plugin/foo.vim
588 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100589 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100590
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100591When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200592'packpath' for plugins under the "pack/*/start" directory. First all those
593directories are added to 'runtimepath'. Then all the plugins are loaded.
594See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100595
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100596In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100597"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100598
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100599If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
600find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100601
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100602Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100603
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100604Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100605ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100606is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100607
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100608Loading packages automatically will not happen if loading plugins is disabled,
609see |load-plugins|.
610
611To load packages earlier, so that 'runtimepath' gets updated: >
612 :packloadall
613This also works when loading plugins is disabled. The automatic loading will
614only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100615
Bram Moolenaar26852122016-05-24 20:02:38 +0200616If the package has an "after" directory, that directory is added to the end of
617'runtimepath', so that anything there will be loaded later.
618
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100619
620Using a single plugin and loading it automatically ~
621
622If you don't have a package but a single plugin, you need to create the extra
623directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100624 % mkdir -p ~/.vim/pack/foo/start/foobar
625 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100626 % unzip /tmp/someplugin.zip
627
628You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100629 pack/foo/start/foobar/plugin/foo.vim
630 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100631
632From here it works like above.
633
634
635Optional plugins ~
636 *pack-add*
637To load an optional plugin from a pack use the `:packadd` command: >
638 :packadd foodebug
639This searches for "pack/*/opt/foodebug" in 'packpath' and will find
640~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
641
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100642This could be done if some conditions are met. For example, depending on
643whether Vim supports a feature or a dependency is missing.
644
645You can also load an optional plugin at startup, by putting this command in
646your |.vimrc|: >
647 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200648The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100649|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100650
651It is perfectly normal for a package to only have files in the "opt"
652directory. You then need to load each plugin when you want to use it.
653
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100654
655Where to put what ~
656
657Since color schemes, loaded with `:colorscheme`, are found below
658"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
659you put them below "pack/*/opt", for example
660".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
661
662Filetype plugins should go under "pack/*/start", so that they are always
663found. Unless you have more than one plugin for a file type and want to
664select which one to load with `:packadd`. E.g. depending on the compiler
665version: >
666 if foo_compiler_version > 34
667 packadd foo_new
668 else
669 packadd foo_old
670 endif
671
672The "after" directory is most likely not useful in a package. It's not
673disallowed though.
674
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100675==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01006766. Creating Vim packages *package-create*
677
678This assumes you write one or more plugins that you distribute as a package.
679
680If you have two unrelated plugins you would use two packages, so that Vim
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200681users can choose what they include or not. Or you can decide to use one
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200682package with optional plugins, and tell the user to add the preferred ones with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100683`:packadd`.
684
685Decide how you want to distribute the package. You can create an archive or
686you could use a repository. An archive can be used by more users, but is a
687bit harder to update to a new version. A repository can usually be kept
688up-to-date easily, but it requires a program like "git" to be available.
689You can do both, github can automatically create an archive for a release.
690
691Your directory layout would be like this:
692 start/foobar/plugin/foo.vim " always loaded, defines commands
693 start/foobar/plugin/bar.vim " always loaded, defines commands
694 start/foobar/autoload/foo.vim " loaded when foo command used
695 start/foobar/doc/foo.txt " help for foo.vim
696 start/foobar/doc/tags " help tags
697 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
698 opt/fooextra/autoload/extra.vim " loaded when extra command used
699 opt/fooextra/doc/extra.txt " help for extra.vim
700 opt/fooextra/doc/tags " help tags
701
702This allows for the user to do: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +0100703 mkdir ~/.vim/pack
704 cd ~/.vim/pack
705 git clone https://github.com/you/foobar.git myfoobar
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100706
707Here "myfoobar" is a name that the user can choose, the only condition is that
708it differs from other packages.
709
710In your documentation you explain what the plugins do, and tell the user how
711to load the optional plugin: >
712 :packadd! fooextra
713
714You could add this packadd command in one of your plugins, to be executed when
715the optional plugin is needed.
716
717Run the `:helptags` command to generate the doc/tags file. Including this
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200718generated file in the package means that the user can drop the package in the
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100719pack directory and the help command works right away. Don't forget to re-run
720the command after changing the plugin help: >
721 :helptags path/start/foobar/doc
722 :helptags path/opt/fooextra/doc
723
Bram Moolenaar03413f42016-04-12 21:07:15 +0200724
725Dependencies between plugins ~
726 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200727Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +0200728put the common functionality in an autoload directory, so that it will be
729found automatically. Your package would have these files:
730
731 pack/foo/start/one/plugin/one.vim >
732 call foolib#getit()
733< pack/foo/start/two/plugin/two.vim >
734 call foolib#getit()
735< pack/foo/start/lib/autoload/foolib.vim >
736 func foolib#getit()
737
738This works, because loading packages will first add all found directories to
739'runtimepath' before sourcing the plugins.
740
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100741==============================================================================
7427. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744Besides the obvious messages that you can add to your scripts to find out what
745they are doing, Vim offers a debug mode. This allows you to step through a
746sourced file or user function and set breakpoints.
747
748NOTE: The debugging mode is far from perfect. Debugging will have side
749effects on how Vim works. You cannot use it to debug everything. For
750example, the display is messed up by the debugging messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751
752An alternative to debug mode is setting the 'verbose' option. With a bigger
753number it will give more verbose messages about what Vim is doing.
754
755
756STARTING DEBUG MODE *debug-mode*
757
758To enter debugging mode use one of these methods:
7591. Start Vim with the |-D| argument: >
760 vim -D file.txt
761< Debugging will start as soon as the first vimrc file is sourced. This is
762 useful to find out what is happening when Vim is starting up. A side
763 effect is that Vim will switch the terminal mode before initialisations
764 have finished, with unpredictable results.
765 For a GUI-only version (Windows, Macintosh) the debugging will start as
766 soon as the GUI window has been opened. To make this happen early, add a
767 ":gui" command in the vimrc file.
768 *:debug*
7692. Run a command with ":debug" prepended. Debugging will only be done while
770 this command executes. Useful for debugging a specific script or user
771 function. And for scripts and functions used by autocommands. Example: >
772 :debug edit test.txt.gz
773
7743. Set a breakpoint in a sourced file or user function. You could do this in
775 the command line: >
776 vim -c "breakadd file */explorer.vim" .
777< This will run Vim and stop in the first line of the "explorer.vim" script.
778 Breakpoints can also be set while in debugging mode.
779
780In debugging mode every executed command is displayed before it is executed.
781Comment lines, empty lines and lines that are not executed are skipped. When
782a line contains two commands, separated by "|", each command will be displayed
783separately.
784
785
786DEBUG MODE
787
788Once in debugging mode, the usual Ex commands can be used. For example, to
789inspect the value of a variable: >
790 echo idx
791When inside a user function, this will print the value of the local variable
792"idx". Prepend "g:" to get the value of a global variable: >
793 echo g:idx
794All commands are executed in the context of the current function or script.
795You can also set options, for example setting or resetting 'verbose' will show
796what happens, but you might want to set it just before executing the lines you
797are interested in: >
798 :set verbose=20
799
800Commands that require updating the screen should be avoided, because their
801effect won't be noticed until after leaving debug mode. For example: >
802 :help
803won't be very helpful.
804
805There is a separate command-line history for debug mode.
806
Bram Moolenaar6304be62021-11-27 10:57:26 +0000807NOTE: In Vim9 script, if a command is written at the script level and
808continues on the next line, not using the old way with a backslash for line
809continuation, only the first line is printed before the debugging prompt.
810
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811The line number for a function line is relative to the start of the function.
812If you have trouble figuring out where you are, edit the file that defines
813the function in another Vim, search for the start of the function and do
814"99j". Replace "99" with the line number.
815
816Additionally, these commands can be used:
817 *>cont*
818 cont Continue execution until the next breakpoint is hit.
819 *>quit*
820 quit Abort execution. This is like using CTRL-C, some
821 things might still be executed, doesn't abort
822 everything. Still stops at the next breakpoint.
823 *>next*
824 next Execute the command and come back to debug mode when
825 it's finished. This steps over user function calls
826 and sourced files.
827 *>step*
828 step Execute the command and come back to debug mode for
829 the next command. This steps into called user
830 functions and sourced files.
831 *>interrupt*
832 interrupt This is like using CTRL-C, but unlike ">quit" comes
833 back to debug mode for the next command that is
834 executed. Useful for testing |:finally| and |:catch|
835 on interrupt exceptions.
836 *>finish*
837 finish Finish the current script or user function and come
838 back to debug mode for the command after the one that
839 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100840 *>bt*
841 *>backtrace*
842 *>where*
843 backtrace Show the call stacktrace for current debugging session.
844 bt
845 where
846 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100847 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100848 relative. E.g., ":frame +3" goes three frames up.
849 *>up*
850 up Goes one level up from call stacktrace.
851 *>down*
852 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
854About the additional commands in debug mode:
855- There is no command-line completion for them, you get the completion for the
856 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100857- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100858 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859- Hitting <CR> will repeat the previous one. When doing another command, this
860 is reset (because it's not clear what you want to repeat).
861- When you want to use the Ex command with the same name, prepend a colon:
862 ":cont", ":next", ":finish" (or shorter).
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200863 *vim9-debug*
864When debugging a compiled :def function, "step" will stop before every
Bram Moolenaar90df4b92021-07-07 20:26:08 +0200865executed line, not every single instruction. Thus it works mostly like a not
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200866compiled function. Access to local variables is limited you can use: >
867 echo varname
868But not much else.
869When executing a command that is not a specific bytecode instruction but
870executed like a normal Ex command, "step" will stop once in the compiled
871context, where local variables can be inspected, and once just before
872executing the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100874The backtrace shows the hierarchy of function calls, e.g.:
875 >bt ~
876 3 function One[3] ~
877 2 Two[3] ~
878 ->1 Three[3] ~
879 0 Four ~
880 line 1: let four = 4 ~
881
882The "->" points to the current frame. Use "up", "down" and "frame N" to
883select another frame.
884
885In the current frame you can evaluate the local function variables. There is
886no way to see the command at the current line yet.
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
889DEFINING BREAKPOINTS
890 *:breaka* *:breakadd*
891:breaka[dd] func [lnum] {name}
892 Set a breakpoint in a function. Example: >
893 :breakadd func Explore
894< Doesn't check for a valid function name, thus the breakpoint
895 can be set before the function is defined.
896
897:breaka[dd] file [lnum] {name}
898 Set a breakpoint in a sourced file. Example: >
899 :breakadd file 43 .vimrc
900
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000901:breaka[dd] here
902 Set a breakpoint in the current line of the current file.
903 Like doing: >
904 :breakadd file <cursor-line> <current-file>
905< Note that this only works for commands that are executed when
906 sourcing the file, not for a function defined in that file.
907
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100908:breaka[dd] expr {expression}
909 Sets a breakpoint, that will break whenever the {expression}
910 evaluates to a different value. Example: >
911 :breakadd expr g:lnum
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100912< Will break, whenever the global variable lnum changes.
Bram Moolenaar6c391a72021-09-09 21:55:11 +0200913
914 Errors in evaluation are suppressed, you can use the name of a
915 variable that does not exist yet. This also means you will
916 not notice anything if the expression has a mistake.
917
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100918 Note if you watch a |script-variable| this will break
919 when switching scripts, since the script variable is only
920 valid in the script where it has been defined and if that
921 script is called from several other scripts, this will stop
922 whenever that particular variable will become visible or
Bram Moolenaar9faec4e2021-02-27 16:38:07 +0100923 inaccessible again.
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925The [lnum] is the line number of the breakpoint. Vim will stop at or after
926this line. When omitted line 1 is used.
927
Bram Moolenaar05159a02005-02-26 23:04:13 +0000928 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{name} is a pattern that is matched with the file or function name. The
930pattern is like what is used for autocommands. There must be a full match (as
931if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
932of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
933to ignore case |/\c|. Don't include the () for the function name!
934
Bram Moolenaar843ee412004-06-30 16:16:41 +0000935The match for sourced scripts is done against the full file name. If no path
936is specified the current directory is used. Examples: >
937 breakadd file explorer.vim
938matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000940matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000942matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943
944The match for functions is done against the name as it's shown in the output
Bram Moolenaarb2049902021-01-24 12:53:53 +0100945of ":function". However, for local functions the script-specific prefix such
946as "<SNR>99_" is ignored to make it easier to match script-local functions
947without knowing the ID of the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000949Note that functions are first loaded and later executed. When they are loaded
950the "file" breakpoints are checked, when they are executed the "func"
951breakpoints.
952
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953
954DELETING BREAKPOINTS
955 *:breakd* *:breakdel* *E161*
956:breakd[el] {nr}
957 Delete breakpoint {nr}. Use |:breaklist| to see the number of
958 each breakpoint.
959
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000960:breakd[el] *
961 Delete all breakpoints.
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963:breakd[el] func [lnum] {name}
964 Delete a breakpoint in a function.
965
966:breakd[el] file [lnum] {name}
967 Delete a breakpoint in a sourced file.
968
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000969:breakd[el] here
970 Delete a breakpoint at the current line of the current file.
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972When [lnum] is omitted, the first breakpoint in the function or file is
973deleted.
974The {name} must be exactly the same as what was typed for the ":breakadd"
975command. "explorer", "*explorer.vim" and "*explorer*" are different.
976
977
978LISTING BREAKPOINTS
979 *:breakl* *:breaklist*
980:breakl[ist]
981 List all breakpoints.
982
983
984OBSCURE
985
986 *:debugg* *:debuggreedy*
987:debugg[reedy]
988 Read debug mode commands from the normal input stream, instead
989 of getting them directly from the user. Only useful for test
990 scripts. Example: >
991 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
992
993:0debugg[reedy]
994 Undo ":debuggreedy": get debug mode commands directly from the
995 user, don't use typeahead for debug commands.
996
Bram Moolenaar05159a02005-02-26 23:04:13 +0000997==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01009988. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000999
Bram Moolenaar996343d2010-07-04 22:20:21 +02001000Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +00001001functions and/or scripts. The |+profile| feature is required for this.
Bram Moolenaarb2049902021-01-24 12:53:53 +01001002It is included when Vim was compiled with "huge" features.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001003
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001004You can also use the |reltime()| function to measure time. This only requires
Bram Moolenaarb2049902021-01-24 12:53:53 +01001005the |+reltime| feature, which is present in more builds.
Bram Moolenaar433f7c82006-03-21 21:29:36 +00001006
Bram Moolenaar16ea3672013-07-28 16:02:18 +02001007For profiling syntax highlighting see |:syntime|.
1008
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001009For example, to profile the one_script.vim script file: >
1010 :profile start /tmp/one_script_profile
1011 :profile file one_script.vim
1012 :source one_script.vim
1013 :exit
1014
Bram Moolenaar16ea3672013-07-28 16:02:18 +02001015
Bram Moolenaar05159a02005-02-26 23:04:13 +00001016:prof[ile] start {fname} *:prof* *:profile* *E750*
1017 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +02001018 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001019 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001020 The variable |v:profiling| is set to one.
1021
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001022:prof[ile] pause
1023 Don't profile until the following ":profile continue". Can be
1024 used when doing something that should not be counted (e.g., an
1025 external command). Does not nest.
1026
1027:prof[ile] continue
1028 Continue profiling after ":profile pause".
1029
Bram Moolenaar05159a02005-02-26 23:04:13 +00001030:prof[ile] func {pattern}
1031 Profile function that matches the pattern {pattern}.
1032 See |:debug-name| for how {pattern} is used.
1033
1034:prof[ile][!] file {pattern}
1035 Profile script file that matches the pattern {pattern}.
1036 See |:debug-name| for how {pattern} is used.
1037 This only profiles the script itself, not the functions
1038 defined in it.
1039 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001040 will also be profiled.
1041 Note that profiling only starts when the script is loaded
1042 after this command. A :profile command in the script itself
1043 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001044
1045
Bram Moolenaard9fba312005-06-26 22:34:35 +00001046:profd[el] ... *:profd* *:profdel*
1047 Stop profiling for the arguments specified. See |:breakdel|
1048 for the arguments.
1049
1050
Bram Moolenaar05159a02005-02-26 23:04:13 +00001051You must always start with a ":profile start fname" command. The resulting
Bram Moolenaarb2049902021-01-24 12:53:53 +01001052file is written when Vim exits. For example, to profile one specific
1053function: >
1054 profile start /tmp/vimprofile
1055 profile func MyFunc
1056
1057Here is an example of the output, with line
Bram Moolenaar05159a02005-02-26 23:04:13 +00001058numbers prepended for the explanation:
1059
1060 1 FUNCTION Test2() ~
1061 2 Called 1 time ~
1062 3 Total time: 0.155251 ~
1063 4 Self time: 0.002006 ~
1064 5 ~
1065 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001066 7 9 0.000096 for i in range(8) ~
1067 8 8 0.153655 0.000410 call Test3() ~
1068 9 8 0.000070 endfor ~
1069 10 " Ask a question ~
1070 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +00001071
1072The header (lines 1-4) gives the time for the whole function. The "Total"
1073time is the time passed while the function was executing. The "Self" time is
1074the "Total" time reduced by time spent in:
1075- other user defined functions
1076- sourced scripts
1077- executed autocommands
1078- external (shell) commands
1079
1080Lines 7-11 show the time spent in each executed line. Lines that are not
1081executed do not count. Thus a comment line is never counted.
1082
1083The Count column shows how many times a line was executed. Note that the
1084"for" command in line 7 is executed one more time as the following lines.
1085That is because the line is also executed to detect the end of the loop.
1086
1087The time Vim spends waiting for user input isn't counted at all. Thus how
1088long you take to respond to the input() prompt is irrelevant.
1089
1090Profiling should give a good indication of where time is spent, but keep in
1091mind there are various things that may clobber the results:
1092
1093- The accuracy of the time measured depends on the gettimeofday() system
1094 function. It may only be as accurate as 1/100 second, even though the times
1095 are displayed in micro seconds.
1096
1097- Real elapsed time is measured, if other processes are busy they may cause
1098 delays at unpredictable moments. You may want to run the profiling several
1099 times and use the lowest results.
1100
1101- If you have several commands in one line you only get one time. Split the
1102 line to see the time for the individual commands.
1103
1104- The time of the lines added up is mostly less than the time of the whole
1105 function. There is some overhead in between.
1106
1107- Functions that are deleted before Vim exits will not produce profiling
1108 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001109 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001110 : delfunc MyFunc
1111 :endif
1112<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001113- Profiling may give weird results on multi-processor systems, when sleep
1114 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001115
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001116- The "self" time is wrong when a function is used recursively.
1117
1118
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001119 vim:tw=78:ts=8:noet:ft=help:norl: