blob: 25f375e6fc908d670cb45b600288aa69f4b0917a [file] [log] [blame]
Bram Moolenaara4d131d2021-12-27 21:33:07 +00001*repeat.txt* For Vim version 8.2. Last change: 2021 Dec 27
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.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200200 *:source!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201:so[urce]! {file} Read Vim commands from {file}. These are commands
202 that are executed from Normal mode, like you type
203 them.
204 When used after |:global|, |:argdo|, |:windo|,
205 |:bufdo|, in a loop or when another command follows
206 the display won't be updated while executing the
207 commands.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200208 Cannot be used in the |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209
210 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100211:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100213 by 'runtimepath' and/or 'packpath'. There is no error
214 for non-existing files.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100215
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100216 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217 :runtime syntax/c.vim
218
219< There can be multiple {file} arguments, separated by
220 spaces. Each {file} is searched for in the first
221 directory from 'runtimepath', then in the second
222 directory, etc. Use a backslash to include a space
223 inside {file} (although it's better not to use spaces
224 in file names, it causes trouble).
225
226 When [!] is included, all found files are sourced.
227 When it is not included only the first found file is
228 sourced.
229
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100230 When [where] is omitted only 'runtimepath' is used.
231 Other values:
232 START search under "start" in 'packpath'
233 OPT search under "opt" in 'packpath'
234 PACK search under "start" and "opt" in
235 'packpath'
236 ALL first use 'runtimepath', then search
237 under "start" and "opt" in 'packpath'
238
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239 When {file} contains wildcards it is expanded to all
240 matching files. Example: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200241 :runtime! plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000243 starting up. This similar command: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200244 :runtime plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245< would source the first file only.
246
247 When 'verbose' is one or higher, there is a message
248 when no file could be found.
249 When 'verbose' is two or higher, there is a message
250 about each searched file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100252 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100253:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
254 and source any plugin files found. The directory must
255 match:
256 pack/*/opt/{name} ~
257 The directory is added to 'runtimepath' if it wasn't
258 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200259 If the directory pack/*/opt/{name}/after exists it is
260 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100261
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100262 If loading packages from "pack/*/start" was skipped,
263 then this directory is searched first:
264 pack/*/start/{name} ~
265
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100266 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200267 of the .vim file. All the files matching the pattern
268 pack/*/opt/{name}/plugin/**/*.vim ~
269 will be sourced. This allows for using subdirectories
270 below "plugin", just like with plugins in
271 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100272
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100273 If the filetype detection was not enabled yet (this
274 is usually done with a "syntax enable" or "filetype
275 on" command in your .vimrc file), this will also look
276 for "{name}/ftdetect/*.vim" files.
277
278 When the optional ! is added no plugin files or
279 ftdetect scripts are loaded, only the matching
280 directories are added to 'runtimepath'. This is
281 useful in your .vimrc. The plugins will then be
Bram Moolenaar2346a632021-06-13 19:02:49 +0200282 loaded during initialization, see |load-plugins| (note
283 that the loading order will be reversed, because each
284 directory is inserted before others).
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200285 Note that for ftdetect scripts to be loaded
286 you will need to write `filetype plugin indent on`
287 AFTER all `packadd!` commands.
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100288
289 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200290 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100291
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100292 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200293:packl[oadall][!] Load all packages in the "start" directory under each
294 entry in 'packpath'.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100295
Bram Moolenaar03413f42016-04-12 21:07:15 +0200296 First all the directories found are added to
297 'runtimepath', then the plugins found in the
298 directories are sourced. This allows for a plugin to
299 depend on something of another plugin, e.g. an
300 "autoload" directory. See |packload-two-steps| for
301 how this can be useful.
302
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100303 This is normally done automatically during startup,
304 after loading your .vimrc file. With this command it
305 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200306
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200307 Packages will be loaded only once. Using
308 `:packloadall` a second time will have no effect.
309 When the optional ! is added this command will load
310 packages even when done before.
311
312 Note that when using `:packloadall` in the |vimrc|
313 file, the 'runtimepath' option is updated, and later
314 all plugins in 'runtimepath' will be loaded, which
315 means they are loaded again. Plugins are expected to
316 handle that.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200317
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200318 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100319 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100320 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200321 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100322
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
324 Specify the character encoding used in the script.
325 The following lines will be converted from [encoding]
326 to the value of the 'encoding' option, if they are
327 different. Examples: >
328 scriptencoding iso-8859-5
329 scriptencoding cp932
330<
331 When [encoding] is empty, no conversion is done. This
332 can be used to restrict conversion to a sequence of
333 lines: >
334 scriptencoding euc-jp
335 ... lines to be converted ...
336 scriptencoding
337 ... not converted ...
338
339< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200340 is no error message and no conversion is done. When a
341 line can't be converted there is no error and the
342 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343
344 Don't use "ucs-2" or "ucs-4", scripts cannot be in
345 these encodings (they would contain NUL bytes).
346 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200347 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 to use ":scriptencoding utf-8" then.
349
Bram Moolenaar3df01732017-02-17 22:47:16 +0100350 If you set the 'encoding' option in your |.vimrc|,
351 `:scriptencoding` must be placed after that. E.g.: >
352 set encoding=utf-8
353 scriptencoding utf-8
354<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200356:scriptv[ersion] {version} *:scriptv* *:scriptversion*
357 *E999* *E984*
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200358 Specify the version of Vim for the lines that follow
359 in the same file. Only applies at the toplevel of
360 sourced scripts, not inside functions.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200361
362 If {version} is higher than what the current Vim
363 version supports E999 will be given. You either need
364 to rewrite the script to make it work with an older
365 Vim version, or update Vim to a newer version. See
366 |vimscript-version| for what changed between versions.
367
Bram Moolenaar39f3b142021-02-14 12:57:36 +0100368:vim9s[cript] [noclear] *:vim9s* *:vim9script*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100369 Marks a script file as containing |Vim9-script|
370 commands. Also see |vim9-namespace|.
371 Must be the first command in the file.
372 For [noclear] see |vim9-reload|.
373 Without the |+eval| feature this changes the syntax
374 for some commands.
Bram Moolenaar39f3b142021-02-14 12:57:36 +0100375 See |:vim9cmd| for executing one command with Vim9
376 syntax and semantics.
Bram Moolenaar2346a632021-06-13 19:02:49 +0200377
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100378 *:scr* *:scriptnames*
379:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 first sourced. The number is used for the script ID
381 |<SID>|.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200382 {not available when compiled without the |+eval|
383 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100385:scr[iptnames][!] {scriptId} *:script*
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100386 Edit script {scriptId}. Although ":scriptnames name"
387 works, using ":script name" is recommended.
388 When the current buffer can't be |abandon|ed and the !
389 is not present, the command fails.
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100390
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 *:fini* *:finish* *E168*
392:fini[sh] Stop sourcing a script. Can only be used in a Vim
393 script file. This is a quick way to skip the rest of
394 the file. If it is used after a |:try| but before the
395 matching |:finally| (if present), the commands
396 following the ":finally" up to the matching |:endtry|
397 are executed first. This process applies to all
398 nested ":try"s in the script. The outermost ":endtry"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200399 then stops sourcing the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401All commands and command sequences can be repeated by putting them in a named
402register and then executing it. There are two ways to get the commands in the
403register:
404- Use the record command "q". You type the commands once, and while they are
405 being executed they are stored in a register. Easy, because you can see
406 what you are doing. If you make a mistake, "p"ut the register into the
407 file, edit the command sequence, and then delete it into the register
408 again. You can continue recording by appending to the register (use an
409 uppercase letter).
410- Delete or yank the command sequence into the register.
411
412Often used command sequences can be put under a function key with the ':map'
413command.
414
415An alternative is to put the commands in a file, and execute them with the
416':source!' command. Useful for long command sequences. Can be combined with
417the ':map' command to put complicated commands under a function key.
418
419The ':source' command reads Ex commands from a file line by line. You will
420have to type any needed keyboard input. The ':source!' command reads from a
421script file character by character, interpreting each character as if you
422typed it.
423
424Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
425you ':source' a file with the line "!ls" in it, you will have to type the
426<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
427the next characters from that file are read until a <CR> is found. You will
428not have to type <CR> yourself, unless ":!ls" was the last line in the file.
429
430It is possible to put ':source[!]' commands in the script file, so you can
431make a top-down hierarchy of script files. The ':source' command can be
432nested as deep as the number of files that can be opened at one time (about
43315). The ':source!' command can be nested up to 15 levels deep.
434
435You can use the "<sfile>" string (literally, this is not a special key) inside
436of the sourced file, in places where a file name is expected. It will be
437replaced by the file name of the sourced file. For example, if you have a
438"other.vimrc" file in the same directory as your ".vimrc" file, you can source
439it from your ".vimrc" file with this command: >
440 :source <sfile>:h/other.vimrc
441
442In script files terminal-dependent key codes are represented by
443terminal-independent two character codes. This means that they can be used
444in the same way on different kinds of terminals. The first character of a
445key code is 0x80 or 128, shown on the screen as "~@". The second one can be
446found in the list |key-notation|. Any of these codes can also be entered
447with CTRL-V followed by the three digit decimal code. This does NOT work for
448the <t_xx> termcap codes, these can only be used in mappings.
449
450 *:source_crnl* *W15*
Bram Moolenaar6f345a12019-12-17 21:27:18 +0100451Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s.
452These always work. If you are using a file with <NL> <EOL>s (for example, a
453file made on Unix), this will be recognized if 'fileformats' is not empty and
454the first line does not end in a <CR>. This fails if the first line has
455something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line
456ends in a <CR>, but following ones don't, you will get an error message,
457because the <CR> from the first lines will be lost.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458
Bram Moolenaar520470a2005-06-16 21:59:56 +0000459Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460These always work. If you are using a file with <NL> <EOL>s (for example, a
461file made on Unix), this will be recognized if 'fileformats' is not empty and
462the first line does not end in a <CR>. Be careful not to use a file with <NL>
463linebreaks which has a <CR> in first line.
464
465On other systems, Vim expects ":source"ed files to end in a <NL>. These
466always work. If you are using a file with <CR><NL> <EOL>s (for example, a
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100467file made on MS-Windows), all lines will have a trailing <CR>. This may cause
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468problems for some commands (e.g., mappings). There is no automatic <EOL>
469detection, because it's common to start with a line that defines a mapping
470that ends in a <CR>, which will confuse the automaton.
471
472 *line-continuation*
473Long lines in a ":source"d Ex command script file can be split by inserting
474a line continuation symbol "\" (backslash) at the start of the next line.
475There can be white space before the backslash, which is ignored.
476
477Example: the lines >
478 :set comments=sr:/*,mb:*,el:*/,
479 \://,
480 \b:#,
481 \:%,
482 \n:>,
483 \fb:-
484are interpreted as if they were given in one line:
485 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
486
487All leading whitespace characters in the line before a backslash are ignored.
488Note however that trailing whitespace in the line before it cannot be
489inserted freely; it depends on the position where a command is split up
490whether additional whitespace is allowed or not.
491
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100492When a space is required it's best to put it right after the backslash. A
493space at the end of a line is hard to see and may be accidentally deleted. >
494 :syn match Comment
495 \ "very long regexp"
496 \ keepend
497
Bram Moolenaara4d131d2021-12-27 21:33:07 +0000498In |Vim9| script the backslash can often be omitted, but not always.
499See |vim9-line-continuation|.
500
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501There is a problem with the ":append" and ":insert" commands: >
502 :1append
503 \asdf
504 .
505The backslash is seen as a line-continuation symbol, thus this results in the
506command: >
507 :1appendasdf
508 .
509To avoid this, add the 'C' flag to the 'cpoptions' option: >
510 :set cpo+=C
511 :1append
512 \asdf
513 .
514 :set cpo-=C
515
516Note that when the commands are inside a function, you need to add the 'C'
517flag when defining the function, it is not relevant when executing it. >
518 :set cpo+=C
519 :function Foo()
520 :1append
521 \asdf
522 .
523 :endfunction
524 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200525<
526 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200527To add a comment in between the lines start with '"\ '. Notice the space
528after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200529 let array = [
530 "\ first entry comment
531 \ 'first',
532 "\ second entry comment
533 \ 'second',
534 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535
536Rationale:
537 Most programs work with a trailing backslash to indicate line
538 continuation. Using this in Vim would cause incompatibility with Vi.
539 For example for this Vi mapping: >
540 :map xx asdf\
541< Therefore the unusual leading backslash is used.
542
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200543 Starting a comment in a continuation line results in all following
544 continuation lines to be part of the comment. Since it was like this
545 for a long time, when making it possible to add a comment halfway a
546 sequence of continuation lines, it was not possible to use \", since
547 that was a valid continuation line. Using '"\ ' comes closest, even
548 though it may look a bit weird. Requiring the space after the
549 backslash is to make it very unlikely this is a normal comment line.
550
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01005525. Using Vim packages *packages*
553
554A Vim package is a directory that contains one or more plugins. The
555advantages over normal plugins:
556- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100557 Thus the files are not mixed with files of other plugins. That makes it
558 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100559- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100560 easy to update.
561- A package can contain multiple plugins that depend on each other.
562- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100563 ones that are only loaded when needed with `:packadd`.
564
565
566Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100567
568Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100569package from a zip archive "/tmp/foopack.zip":
570 % mkdir -p ~/.vim/pack/foo
571 % cd ~/.vim/pack/foo
572 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100573
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100574The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100575
576You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100577 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100578 pack/foo/start/foobar/plugin/foo.vim
579 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100580 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100581
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100582When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200583'packpath' for plugins under the "pack/*/start" directory. First all those
584directories are added to 'runtimepath'. Then all the plugins are loaded.
585See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100586
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100587In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100588"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100589
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100590If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
591find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100592
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100593Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100594
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100595Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100596ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100597is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100598
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100599Loading packages automatically will not happen if loading plugins is disabled,
600see |load-plugins|.
601
602To load packages earlier, so that 'runtimepath' gets updated: >
603 :packloadall
604This also works when loading plugins is disabled. The automatic loading will
605only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100606
Bram Moolenaar26852122016-05-24 20:02:38 +0200607If the package has an "after" directory, that directory is added to the end of
608'runtimepath', so that anything there will be loaded later.
609
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100610
611Using a single plugin and loading it automatically ~
612
613If you don't have a package but a single plugin, you need to create the extra
614directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100615 % mkdir -p ~/.vim/pack/foo/start/foobar
616 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100617 % unzip /tmp/someplugin.zip
618
619You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100620 pack/foo/start/foobar/plugin/foo.vim
621 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100622
623From here it works like above.
624
625
626Optional plugins ~
627 *pack-add*
628To load an optional plugin from a pack use the `:packadd` command: >
629 :packadd foodebug
630This searches for "pack/*/opt/foodebug" in 'packpath' and will find
631~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
632
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100633This could be done if some conditions are met. For example, depending on
634whether Vim supports a feature or a dependency is missing.
635
636You can also load an optional plugin at startup, by putting this command in
637your |.vimrc|: >
638 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200639The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100640|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100641
642It is perfectly normal for a package to only have files in the "opt"
643directory. You then need to load each plugin when you want to use it.
644
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100645
646Where to put what ~
647
648Since color schemes, loaded with `:colorscheme`, are found below
649"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
650you put them below "pack/*/opt", for example
651".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
652
653Filetype plugins should go under "pack/*/start", so that they are always
654found. Unless you have more than one plugin for a file type and want to
655select which one to load with `:packadd`. E.g. depending on the compiler
656version: >
657 if foo_compiler_version > 34
658 packadd foo_new
659 else
660 packadd foo_old
661 endif
662
663The "after" directory is most likely not useful in a package. It's not
664disallowed though.
665
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100666==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01006676. Creating Vim packages *package-create*
668
669This assumes you write one or more plugins that you distribute as a package.
670
671If you have two unrelated plugins you would use two packages, so that Vim
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200672users can choose what they include or not. Or you can decide to use one
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200673package with optional plugins, and tell the user to add the preferred ones with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100674`:packadd`.
675
676Decide how you want to distribute the package. You can create an archive or
677you could use a repository. An archive can be used by more users, but is a
678bit harder to update to a new version. A repository can usually be kept
679up-to-date easily, but it requires a program like "git" to be available.
680You can do both, github can automatically create an archive for a release.
681
682Your directory layout would be like this:
683 start/foobar/plugin/foo.vim " always loaded, defines commands
684 start/foobar/plugin/bar.vim " always loaded, defines commands
685 start/foobar/autoload/foo.vim " loaded when foo command used
686 start/foobar/doc/foo.txt " help for foo.vim
687 start/foobar/doc/tags " help tags
688 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
689 opt/fooextra/autoload/extra.vim " loaded when extra command used
690 opt/fooextra/doc/extra.txt " help for extra.vim
691 opt/fooextra/doc/tags " help tags
692
693This allows for the user to do: >
Bram Moolenaarc8cdf0f2021-03-13 13:28:13 +0100694 mkdir ~/.vim/pack
695 cd ~/.vim/pack
696 git clone https://github.com/you/foobar.git myfoobar
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100697
698Here "myfoobar" is a name that the user can choose, the only condition is that
699it differs from other packages.
700
701In your documentation you explain what the plugins do, and tell the user how
702to load the optional plugin: >
703 :packadd! fooextra
704
705You could add this packadd command in one of your plugins, to be executed when
706the optional plugin is needed.
707
708Run the `:helptags` command to generate the doc/tags file. Including this
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200709generated file in the package means that the user can drop the package in the
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100710pack directory and the help command works right away. Don't forget to re-run
711the command after changing the plugin help: >
712 :helptags path/start/foobar/doc
713 :helptags path/opt/fooextra/doc
714
Bram Moolenaar03413f42016-04-12 21:07:15 +0200715
716Dependencies between plugins ~
717 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200718Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +0200719put the common functionality in an autoload directory, so that it will be
720found automatically. Your package would have these files:
721
722 pack/foo/start/one/plugin/one.vim >
723 call foolib#getit()
724< pack/foo/start/two/plugin/two.vim >
725 call foolib#getit()
726< pack/foo/start/lib/autoload/foolib.vim >
727 func foolib#getit()
728
729This works, because loading packages will first add all found directories to
730'runtimepath' before sourcing the plugins.
731
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100732==============================================================================
7337. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734
735Besides the obvious messages that you can add to your scripts to find out what
736they are doing, Vim offers a debug mode. This allows you to step through a
737sourced file or user function and set breakpoints.
738
739NOTE: The debugging mode is far from perfect. Debugging will have side
740effects on how Vim works. You cannot use it to debug everything. For
741example, the display is messed up by the debugging messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742
743An alternative to debug mode is setting the 'verbose' option. With a bigger
744number it will give more verbose messages about what Vim is doing.
745
746
747STARTING DEBUG MODE *debug-mode*
748
749To enter debugging mode use one of these methods:
7501. Start Vim with the |-D| argument: >
751 vim -D file.txt
752< Debugging will start as soon as the first vimrc file is sourced. This is
753 useful to find out what is happening when Vim is starting up. A side
754 effect is that Vim will switch the terminal mode before initialisations
755 have finished, with unpredictable results.
756 For a GUI-only version (Windows, Macintosh) the debugging will start as
757 soon as the GUI window has been opened. To make this happen early, add a
758 ":gui" command in the vimrc file.
759 *:debug*
7602. Run a command with ":debug" prepended. Debugging will only be done while
761 this command executes. Useful for debugging a specific script or user
762 function. And for scripts and functions used by autocommands. Example: >
763 :debug edit test.txt.gz
764
7653. Set a breakpoint in a sourced file or user function. You could do this in
766 the command line: >
767 vim -c "breakadd file */explorer.vim" .
768< This will run Vim and stop in the first line of the "explorer.vim" script.
769 Breakpoints can also be set while in debugging mode.
770
771In debugging mode every executed command is displayed before it is executed.
772Comment lines, empty lines and lines that are not executed are skipped. When
773a line contains two commands, separated by "|", each command will be displayed
774separately.
775
776
777DEBUG MODE
778
779Once in debugging mode, the usual Ex commands can be used. For example, to
780inspect the value of a variable: >
781 echo idx
782When inside a user function, this will print the value of the local variable
783"idx". Prepend "g:" to get the value of a global variable: >
784 echo g:idx
785All commands are executed in the context of the current function or script.
786You can also set options, for example setting or resetting 'verbose' will show
787what happens, but you might want to set it just before executing the lines you
788are interested in: >
789 :set verbose=20
790
791Commands that require updating the screen should be avoided, because their
792effect won't be noticed until after leaving debug mode. For example: >
793 :help
794won't be very helpful.
795
796There is a separate command-line history for debug mode.
797
Bram Moolenaar6304be62021-11-27 10:57:26 +0000798NOTE: In Vim9 script, if a command is written at the script level and
799continues on the next line, not using the old way with a backslash for line
800continuation, only the first line is printed before the debugging prompt.
801
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802The line number for a function line is relative to the start of the function.
803If you have trouble figuring out where you are, edit the file that defines
804the function in another Vim, search for the start of the function and do
805"99j". Replace "99" with the line number.
806
807Additionally, these commands can be used:
808 *>cont*
809 cont Continue execution until the next breakpoint is hit.
810 *>quit*
811 quit Abort execution. This is like using CTRL-C, some
812 things might still be executed, doesn't abort
813 everything. Still stops at the next breakpoint.
814 *>next*
815 next Execute the command and come back to debug mode when
816 it's finished. This steps over user function calls
817 and sourced files.
818 *>step*
819 step Execute the command and come back to debug mode for
820 the next command. This steps into called user
821 functions and sourced files.
822 *>interrupt*
823 interrupt This is like using CTRL-C, but unlike ">quit" comes
824 back to debug mode for the next command that is
825 executed. Useful for testing |:finally| and |:catch|
826 on interrupt exceptions.
827 *>finish*
828 finish Finish the current script or user function and come
829 back to debug mode for the command after the one that
830 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100831 *>bt*
832 *>backtrace*
833 *>where*
834 backtrace Show the call stacktrace for current debugging session.
835 bt
836 where
837 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100838 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100839 relative. E.g., ":frame +3" goes three frames up.
840 *>up*
841 up Goes one level up from call stacktrace.
842 *>down*
843 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844
845About the additional commands in debug mode:
846- There is no command-line completion for them, you get the completion for the
847 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100848- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100849 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850- Hitting <CR> will repeat the previous one. When doing another command, this
851 is reset (because it's not clear what you want to repeat).
852- When you want to use the Ex command with the same name, prepend a colon:
853 ":cont", ":next", ":finish" (or shorter).
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200854 *vim9-debug*
855When debugging a compiled :def function, "step" will stop before every
Bram Moolenaar90df4b92021-07-07 20:26:08 +0200856executed line, not every single instruction. Thus it works mostly like a not
Bram Moolenaar4d8f4762021-06-27 15:18:56 +0200857compiled function. Access to local variables is limited you can use: >
858 echo varname
859But not much else.
860When executing a command that is not a specific bytecode instruction but
861executed like a normal Ex command, "step" will stop once in the compiled
862context, where local variables can be inspected, and once just before
863executing the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100865The backtrace shows the hierarchy of function calls, e.g.:
866 >bt ~
867 3 function One[3] ~
868 2 Two[3] ~
869 ->1 Three[3] ~
870 0 Four ~
871 line 1: let four = 4 ~
872
873The "->" points to the current frame. Use "up", "down" and "frame N" to
874select another frame.
875
876In the current frame you can evaluate the local function variables. There is
877no way to see the command at the current line yet.
878
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879
880DEFINING BREAKPOINTS
881 *:breaka* *:breakadd*
882:breaka[dd] func [lnum] {name}
883 Set a breakpoint in a function. Example: >
884 :breakadd func Explore
885< Doesn't check for a valid function name, thus the breakpoint
886 can be set before the function is defined.
887
888:breaka[dd] file [lnum] {name}
889 Set a breakpoint in a sourced file. Example: >
890 :breakadd file 43 .vimrc
891
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000892:breaka[dd] here
893 Set a breakpoint in the current line of the current file.
894 Like doing: >
895 :breakadd file <cursor-line> <current-file>
896< Note that this only works for commands that are executed when
897 sourcing the file, not for a function defined in that file.
898
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100899:breaka[dd] expr {expression}
900 Sets a breakpoint, that will break whenever the {expression}
901 evaluates to a different value. Example: >
902 :breakadd expr g:lnum
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100903< Will break, whenever the global variable lnum changes.
Bram Moolenaar6c391a72021-09-09 21:55:11 +0200904
905 Errors in evaluation are suppressed, you can use the name of a
906 variable that does not exist yet. This also means you will
907 not notice anything if the expression has a mistake.
908
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100909 Note if you watch a |script-variable| this will break
910 when switching scripts, since the script variable is only
911 valid in the script where it has been defined and if that
912 script is called from several other scripts, this will stop
913 whenever that particular variable will become visible or
Bram Moolenaar9faec4e2021-02-27 16:38:07 +0100914 inaccessible again.
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100915
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916The [lnum] is the line number of the breakpoint. Vim will stop at or after
917this line. When omitted line 1 is used.
918
Bram Moolenaar05159a02005-02-26 23:04:13 +0000919 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920{name} is a pattern that is matched with the file or function name. The
921pattern is like what is used for autocommands. There must be a full match (as
922if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
923of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
924to ignore case |/\c|. Don't include the () for the function name!
925
Bram Moolenaar843ee412004-06-30 16:16:41 +0000926The match for sourced scripts is done against the full file name. If no path
927is specified the current directory is used. Examples: >
928 breakadd file explorer.vim
929matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000931matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000933matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
935The match for functions is done against the name as it's shown in the output
Bram Moolenaarb2049902021-01-24 12:53:53 +0100936of ":function". However, for local functions the script-specific prefix such
937as "<SNR>99_" is ignored to make it easier to match script-local functions
938without knowing the ID of the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000940Note that functions are first loaded and later executed. When they are loaded
941the "file" breakpoints are checked, when they are executed the "func"
942breakpoints.
943
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944
945DELETING BREAKPOINTS
946 *:breakd* *:breakdel* *E161*
947:breakd[el] {nr}
948 Delete breakpoint {nr}. Use |:breaklist| to see the number of
949 each breakpoint.
950
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000951:breakd[el] *
952 Delete all breakpoints.
953
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954:breakd[el] func [lnum] {name}
955 Delete a breakpoint in a function.
956
957:breakd[el] file [lnum] {name}
958 Delete a breakpoint in a sourced file.
959
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000960:breakd[el] here
961 Delete a breakpoint at the current line of the current file.
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963When [lnum] is omitted, the first breakpoint in the function or file is
964deleted.
965The {name} must be exactly the same as what was typed for the ":breakadd"
966command. "explorer", "*explorer.vim" and "*explorer*" are different.
967
968
969LISTING BREAKPOINTS
970 *:breakl* *:breaklist*
971:breakl[ist]
972 List all breakpoints.
973
974
975OBSCURE
976
977 *:debugg* *:debuggreedy*
978:debugg[reedy]
979 Read debug mode commands from the normal input stream, instead
980 of getting them directly from the user. Only useful for test
981 scripts. Example: >
982 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
983
984:0debugg[reedy]
985 Undo ":debuggreedy": get debug mode commands directly from the
986 user, don't use typeahead for debug commands.
987
Bram Moolenaar05159a02005-02-26 23:04:13 +0000988==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01009898. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000990
Bram Moolenaar996343d2010-07-04 22:20:21 +0200991Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000992functions and/or scripts. The |+profile| feature is required for this.
Bram Moolenaarb2049902021-01-24 12:53:53 +0100993It is included when Vim was compiled with "huge" features.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000994
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000995You can also use the |reltime()| function to measure time. This only requires
Bram Moolenaarb2049902021-01-24 12:53:53 +0100996the |+reltime| feature, which is present in more builds.
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000997
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200998For profiling syntax highlighting see |:syntime|.
999
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001000For example, to profile the one_script.vim script file: >
1001 :profile start /tmp/one_script_profile
1002 :profile file one_script.vim
1003 :source one_script.vim
1004 :exit
1005
Bram Moolenaar16ea3672013-07-28 16:02:18 +02001006
Bram Moolenaar05159a02005-02-26 23:04:13 +00001007:prof[ile] start {fname} *:prof* *:profile* *E750*
1008 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +02001009 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001010 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001011 The variable |v:profiling| is set to one.
1012
Bram Moolenaar9b2200a2006-03-20 21:55:45 +00001013:prof[ile] pause
1014 Don't profile until the following ":profile continue". Can be
1015 used when doing something that should not be counted (e.g., an
1016 external command). Does not nest.
1017
1018:prof[ile] continue
1019 Continue profiling after ":profile pause".
1020
Bram Moolenaar05159a02005-02-26 23:04:13 +00001021:prof[ile] func {pattern}
1022 Profile function that matches the pattern {pattern}.
1023 See |:debug-name| for how {pattern} is used.
1024
1025:prof[ile][!] file {pattern}
1026 Profile script file that matches the pattern {pattern}.
1027 See |:debug-name| for how {pattern} is used.
1028 This only profiles the script itself, not the functions
1029 defined in it.
1030 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +01001031 will also be profiled.
1032 Note that profiling only starts when the script is loaded
1033 after this command. A :profile command in the script itself
1034 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001035
1036
Bram Moolenaard9fba312005-06-26 22:34:35 +00001037:profd[el] ... *:profd* *:profdel*
1038 Stop profiling for the arguments specified. See |:breakdel|
1039 for the arguments.
1040
1041
Bram Moolenaar05159a02005-02-26 23:04:13 +00001042You must always start with a ":profile start fname" command. The resulting
Bram Moolenaarb2049902021-01-24 12:53:53 +01001043file is written when Vim exits. For example, to profile one specific
1044function: >
1045 profile start /tmp/vimprofile
1046 profile func MyFunc
1047
1048Here is an example of the output, with line
Bram Moolenaar05159a02005-02-26 23:04:13 +00001049numbers prepended for the explanation:
1050
1051 1 FUNCTION Test2() ~
1052 2 Called 1 time ~
1053 3 Total time: 0.155251 ~
1054 4 Self time: 0.002006 ~
1055 5 ~
1056 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001057 7 9 0.000096 for i in range(8) ~
1058 8 8 0.153655 0.000410 call Test3() ~
1059 9 8 0.000070 endfor ~
1060 10 " Ask a question ~
1061 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +00001062
1063The header (lines 1-4) gives the time for the whole function. The "Total"
1064time is the time passed while the function was executing. The "Self" time is
1065the "Total" time reduced by time spent in:
1066- other user defined functions
1067- sourced scripts
1068- executed autocommands
1069- external (shell) commands
1070
1071Lines 7-11 show the time spent in each executed line. Lines that are not
1072executed do not count. Thus a comment line is never counted.
1073
1074The Count column shows how many times a line was executed. Note that the
1075"for" command in line 7 is executed one more time as the following lines.
1076That is because the line is also executed to detect the end of the loop.
1077
1078The time Vim spends waiting for user input isn't counted at all. Thus how
1079long you take to respond to the input() prompt is irrelevant.
1080
1081Profiling should give a good indication of where time is spent, but keep in
1082mind there are various things that may clobber the results:
1083
1084- The accuracy of the time measured depends on the gettimeofday() system
1085 function. It may only be as accurate as 1/100 second, even though the times
1086 are displayed in micro seconds.
1087
1088- Real elapsed time is measured, if other processes are busy they may cause
1089 delays at unpredictable moments. You may want to run the profiling several
1090 times and use the lowest results.
1091
1092- If you have several commands in one line you only get one time. Split the
1093 line to see the time for the individual commands.
1094
1095- The time of the lines added up is mostly less than the time of the whole
1096 function. There is some overhead in between.
1097
1098- Functions that are deleted before Vim exits will not produce profiling
1099 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001100 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001101 : delfunc MyFunc
1102 :endif
1103<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001104- Profiling may give weird results on multi-processor systems, when sleep
1105 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001106
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001107- The "self" time is wrong when a function is used recursively.
1108
1109
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001110 vim:tw=78:ts=8:noet:ft=help:norl: