blob: ed48cf9c4f5828993c52376ad98202ce23d3ecdf [file] [log] [blame]
Bram Moolenaar25c9c682019-05-05 18:13:34 +02001*repeat.txt* For Vim version 8.1. Last change: 2019 May 05
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 Moolenaarc81e5e72007-05-05 18:24:42 +000062Instead of the '/' which surrounds the {pattern}, you can use any other
Bram Moolenaare2db6952013-07-24 19:53:36 +020063single byte character, but not an alphabetic character, '\', '"' or '|'.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000064This is useful if you want to include a '/' in the search pattern or
65replacement string.
66
67For the definition of a pattern, see |pattern|.
68
Bram Moolenaar32efaf62014-11-05 17:02:17 +010069NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for
70examples.
71
Bram Moolenaar071d4272004-06-13 20:20:40 +000072The global commands work by first scanning through the [range] lines and
73marking each line where a match occurs (for a multi-line pattern, only the
74start of the match matters).
Bram Moolenaar03413f42016-04-12 21:07:15 +020075In a second scan the [cmd] is executed for each marked line, as if the cursor
76was in that line. For ":v" and ":g!" the command is executed for each not
Bram Moolenaar071d4272004-06-13 20:20:40 +000077marked line. If a line is deleted its mark disappears.
78The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt
79the command. If an error message is given for a line, the command for that
80line is aborted and the global command continues with the next marked or
81unmarked line.
Bram Moolenaarf84b1222017-06-10 14:29:52 +020082 *E147*
83When the command is used recursively, it only works on one line. Giving a
84range is then not allowed. This is useful to find all lines that match a
85pattern and do not match another pattern: >
86 :g/found/v/notfound/{cmd}
87This first finds all lines containing "found", but only executes {cmd} when
88there is no match for "notfound".
Bram Moolenaar071d4272004-06-13 20:20:40 +000089
Bram Moolenaarf84b1222017-06-10 14:29:52 +020090To execute a non-Ex command, you can use the `:normal` command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +000091 :g/pat/normal {commands}
92Make sure that {commands} ends with a whole command, otherwise Vim will wait
93for you to type the rest of the command for each match. The screen will not
94have been updated, so you don't know what you are doing. See |:normal|.
95
96The undo/redo command will undo/redo the whole global command at once.
97The previous context mark will only be set once (with "''" you go back to
98where the cursor was before the global command).
99
100The global command sets both the last used search pattern and the last used
101substitute pattern (this is vi compatible). This makes it easy to globally
102replace a string:
103 :g/pat/s//PAT/g
104This replaces all occurrences of "pat" with "PAT". The same can be done with:
105 :%s/pat/PAT/g
106Which is two characters shorter!
107
Bram Moolenaar864207d2008-06-24 22:14:38 +0000108When using "global" in Ex mode, a special case is using ":visual" as a
109command. This will move to a matching line, go to Normal mode to let you
110execute commands there until you use |Q| to return to Ex mode. This will be
111repeated for each matching line. While doing this you cannot use ":global".
112To abort this type CTRL-C twice.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000113
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114==============================================================================
1153. Complex repeats *complex-repeat*
116
117 *q* *recording*
118q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
119 (uppercase to append). The 'q' command is disabled
120 while executing a register, and it doesn't work inside
Bram Moolenaara0ed84a2015-11-19 17:56:13 +0100121 a mapping and |:normal|.
122
123 Note: If the register being used for recording is also
124 used for |y| and |p| the result is most likely not
125 what is expected, because the put will paste the
126 recorded macro and the yank will overwrite the
127 recorded macro. {Vi: no recording}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129q Stops recording. (Implementation note: The 'q' that
130 stops recording is not stored in the register, unless
131 it was the result of a mapping) {Vi: no recording}
132
133 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200134@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 times. Note that register '%' (name of the current
136 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100137 used.
138 The register is executed like a mapping, that means
139 that the difference between 'wildchar' and 'wildcharm'
140 applies.
141 For "@=" you are prompted to enter an expression. The
142 result of the expression is then executed.
143 See also |@:|. {Vi: only named registers}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000145 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146@@ Repeat the previous @{0-9a-z":*} [count] times.
147
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200148:[addr]*{0-9a-z".=+} *:@* *:star*
149:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150 command. First set cursor at line [addr] (default is
151 current line). When the last line in the register does
152 not have a <CR> it will be added automatically when
153 the 'e' flag is present in 'cpoptions'.
154 Note that the ":*" command is only recognized when the
155 '*' flag is present in 'cpoptions'. This is NOT the
156 default when 'nocompatible' is used.
157 For ":@=" the last used expression is used. The
158 result of evaluating the expression is executed as an
159 Ex command.
160 Mappings are not recognized in these commands.
161 {Vi: only in some versions} Future: Will execute the
162 register for each line in the address range.
163
164 *:@:*
165:[addr]@: Repeat last command-line. First set cursor at line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200166 [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200168:[addr]@ *:@@*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169:[addr]@@ Repeat the previous :@{0-9a-z"}. First set cursor at
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200170 line [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171
172==============================================================================
1734. Using Vim scripts *using-scripts*
174
175For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
176
177 *:so* *:source* *load-vim-script*
178:so[urce] {file} Read Ex commands from {file}. These are commands that
179 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000180 Triggers the |SourcePre| autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182:so[urce]! {file} Read Vim commands from {file}. These are commands
183 that are executed from Normal mode, like you type
184 them.
185 When used after |:global|, |:argdo|, |:windo|,
186 |:bufdo|, in a loop or when another command follows
187 the display won't be updated while executing the
188 commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189
190 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100191:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100193 by 'runtimepath' and/or 'packpath'. There is no error
194 for non-existing files.
195
196 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 :runtime syntax/c.vim
198
199< There can be multiple {file} arguments, separated by
200 spaces. Each {file} is searched for in the first
201 directory from 'runtimepath', then in the second
202 directory, etc. Use a backslash to include a space
203 inside {file} (although it's better not to use spaces
204 in file names, it causes trouble).
205
206 When [!] is included, all found files are sourced.
207 When it is not included only the first found file is
208 sourced.
209
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100210 When [where] is omitted only 'runtimepath' is used.
211 Other values:
212 START search under "start" in 'packpath'
213 OPT search under "opt" in 'packpath'
214 PACK search under "start" and "opt" in
215 'packpath'
216 ALL first use 'runtimepath', then search
217 under "start" and "opt" in 'packpath'
218
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 When {file} contains wildcards it is expanded to all
220 matching files. Example: >
221 :runtime! plugin/*.vim
222< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000223 starting up. This similar command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224 :runtime plugin/*.vim
225< would source the first file only.
226
227 When 'verbose' is one or higher, there is a message
228 when no file could be found.
229 When 'verbose' is two or higher, there is a message
230 about each searched file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100232 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100233:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
234 and source any plugin files found. The directory must
235 match:
236 pack/*/opt/{name} ~
237 The directory is added to 'runtimepath' if it wasn't
238 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200239 If the directory pack/*/opt/{name}/after exists it is
240 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100241
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100242 If loading packages from "pack/*/start" was skipped,
243 then this directory is searched first:
244 pack/*/start/{name} ~
245
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100246 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200247 of the .vim file. All the files matching the pattern
248 pack/*/opt/{name}/plugin/**/*.vim ~
249 will be sourced. This allows for using subdirectories
250 below "plugin", just like with plugins in
251 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100252
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100253 If the filetype detection was not enabled yet (this
254 is usually done with a "syntax enable" or "filetype
255 on" command in your .vimrc file), this will also look
256 for "{name}/ftdetect/*.vim" files.
257
258 When the optional ! is added no plugin files or
259 ftdetect scripts are loaded, only the matching
260 directories are added to 'runtimepath'. This is
261 useful in your .vimrc. The plugins will then be
262 loaded during initialization, see |load-plugins|.
263
264 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200265 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100266
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100267 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200268:packl[oadall][!] Load all packages in the "start" directory under each
269 entry in 'packpath'.
270
271 First all the directories found are added to
272 'runtimepath', then the plugins found in the
273 directories are sourced. This allows for a plugin to
274 depend on something of another plugin, e.g. an
275 "autoload" directory. See |packload-two-steps| for
276 how this can be useful.
277
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100278 This is normally done automatically during startup,
279 after loading your .vimrc file. With this command it
280 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200281
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100282 Packages will be loaded only once. After this command
283 it won't happen again. When the optional ! is added
284 this command will load packages even when done before.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200285
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200286 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100287 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100288 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200289 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100290
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
292 Specify the character encoding used in the script.
293 The following lines will be converted from [encoding]
294 to the value of the 'encoding' option, if they are
295 different. Examples: >
296 scriptencoding iso-8859-5
297 scriptencoding cp932
298<
299 When [encoding] is empty, no conversion is done. This
300 can be used to restrict conversion to a sequence of
301 lines: >
302 scriptencoding euc-jp
303 ... lines to be converted ...
304 scriptencoding
305 ... not converted ...
306
307< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200308 is no error message and no conversion is done. When a
309 line can't be converted there is no error and the
310 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311
312 Don't use "ucs-2" or "ucs-4", scripts cannot be in
313 these encodings (they would contain NUL bytes).
314 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200315 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316 to use ":scriptencoding utf-8" then.
317
Bram Moolenaar3df01732017-02-17 22:47:16 +0100318 If you set the 'encoding' option in your |.vimrc|,
319 `:scriptencoding` must be placed after that. E.g.: >
320 set encoding=utf-8
321 scriptencoding utf-8
322<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200324:scriptv[ersion] {version} *:scriptv* *:scriptversion*
325 *E999* *E984*
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200326 Specify the version of Vim for the lines that follow
327 in the same file. Only applies at the toplevel of
328 sourced scripts, not inside functions.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200329
330 If {version} is higher than what the current Vim
331 version supports E999 will be given. You either need
332 to rewrite the script to make it work with an older
333 Vim version, or update Vim to a newer version. See
334 |vimscript-version| for what changed between versions.
335
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100336 *:scr* *:scriptnames*
337:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 first sourced. The number is used for the script ID
339 |<SID>|.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200340 {not available when compiled without the |+eval|
341 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100343:scr[iptnames][!] {scriptId} *:script*
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100344 Edit script {scriptId}. Although ":scriptnames name"
345 works, using ":script name" is recommended.
346 When the current buffer can't be |abandon|ed and the !
347 is not present, the command fails.
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100348
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 *:fini* *:finish* *E168*
350:fini[sh] Stop sourcing a script. Can only be used in a Vim
351 script file. This is a quick way to skip the rest of
352 the file. If it is used after a |:try| but before the
353 matching |:finally| (if present), the commands
354 following the ":finally" up to the matching |:endtry|
355 are executed first. This process applies to all
356 nested ":try"s in the script. The outermost ":endtry"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200357 then stops sourcing the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
359All commands and command sequences can be repeated by putting them in a named
360register and then executing it. There are two ways to get the commands in the
361register:
362- Use the record command "q". You type the commands once, and while they are
363 being executed they are stored in a register. Easy, because you can see
364 what you are doing. If you make a mistake, "p"ut the register into the
365 file, edit the command sequence, and then delete it into the register
366 again. You can continue recording by appending to the register (use an
367 uppercase letter).
368- Delete or yank the command sequence into the register.
369
370Often used command sequences can be put under a function key with the ':map'
371command.
372
373An alternative is to put the commands in a file, and execute them with the
374':source!' command. Useful for long command sequences. Can be combined with
375the ':map' command to put complicated commands under a function key.
376
377The ':source' command reads Ex commands from a file line by line. You will
378have to type any needed keyboard input. The ':source!' command reads from a
379script file character by character, interpreting each character as if you
380typed it.
381
382Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
383you ':source' a file with the line "!ls" in it, you will have to type the
384<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
385the next characters from that file are read until a <CR> is found. You will
386not have to type <CR> yourself, unless ":!ls" was the last line in the file.
387
388It is possible to put ':source[!]' commands in the script file, so you can
389make a top-down hierarchy of script files. The ':source' command can be
390nested as deep as the number of files that can be opened at one time (about
39115). The ':source!' command can be nested up to 15 levels deep.
392
393You can use the "<sfile>" string (literally, this is not a special key) inside
394of the sourced file, in places where a file name is expected. It will be
395replaced by the file name of the sourced file. For example, if you have a
396"other.vimrc" file in the same directory as your ".vimrc" file, you can source
397it from your ".vimrc" file with this command: >
398 :source <sfile>:h/other.vimrc
399
400In script files terminal-dependent key codes are represented by
401terminal-independent two character codes. This means that they can be used
402in the same way on different kinds of terminals. The first character of a
403key code is 0x80 or 128, shown on the screen as "~@". The second one can be
404found in the list |key-notation|. Any of these codes can also be entered
405with CTRL-V followed by the three digit decimal code. This does NOT work for
406the <t_xx> termcap codes, these can only be used in mappings.
407
408 *:source_crnl* *W15*
409MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have
410<CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s
411(for example, a file made on Unix), this will be recognized if 'fileformats'
412is not empty and the first line does not end in a <CR>. This fails if the
413first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If
414the first line ends in a <CR>, but following ones don't, you will get an error
415message, because the <CR> from the first lines will be lost.
416
Bram Moolenaar520470a2005-06-16 21:59:56 +0000417Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418These always work. If you are using a file with <NL> <EOL>s (for example, a
419file made on Unix), this will be recognized if 'fileformats' is not empty and
420the first line does not end in a <CR>. Be careful not to use a file with <NL>
421linebreaks which has a <CR> in first line.
422
423On other systems, Vim expects ":source"ed files to end in a <NL>. These
424always work. If you are using a file with <CR><NL> <EOL>s (for example, a
425file made on MS-DOS), all lines will have a trailing <CR>. This may cause
426problems for some commands (e.g., mappings). There is no automatic <EOL>
427detection, because it's common to start with a line that defines a mapping
428that ends in a <CR>, which will confuse the automaton.
429
430 *line-continuation*
431Long lines in a ":source"d Ex command script file can be split by inserting
432a line continuation symbol "\" (backslash) at the start of the next line.
433There can be white space before the backslash, which is ignored.
434
435Example: the lines >
436 :set comments=sr:/*,mb:*,el:*/,
437 \://,
438 \b:#,
439 \:%,
440 \n:>,
441 \fb:-
442are interpreted as if they were given in one line:
443 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
444
445All leading whitespace characters in the line before a backslash are ignored.
446Note however that trailing whitespace in the line before it cannot be
447inserted freely; it depends on the position where a command is split up
448whether additional whitespace is allowed or not.
449
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100450When a space is required it's best to put it right after the backslash. A
451space at the end of a line is hard to see and may be accidentally deleted. >
452 :syn match Comment
453 \ "very long regexp"
454 \ keepend
455
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456There is a problem with the ":append" and ":insert" commands: >
457 :1append
458 \asdf
459 .
460The backslash is seen as a line-continuation symbol, thus this results in the
461command: >
462 :1appendasdf
463 .
464To avoid this, add the 'C' flag to the 'cpoptions' option: >
465 :set cpo+=C
466 :1append
467 \asdf
468 .
469 :set cpo-=C
470
471Note that when the commands are inside a function, you need to add the 'C'
472flag when defining the function, it is not relevant when executing it. >
473 :set cpo+=C
474 :function Foo()
475 :1append
476 \asdf
477 .
478 :endfunction
479 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200480<
481 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200482To add a comment in between the lines start with '"\ '. Notice the space
483after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200484 let array = [
485 "\ first entry comment
486 \ 'first',
487 "\ second entry comment
488 \ 'second',
489 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000490
491Rationale:
492 Most programs work with a trailing backslash to indicate line
493 continuation. Using this in Vim would cause incompatibility with Vi.
494 For example for this Vi mapping: >
495 :map xx asdf\
496< Therefore the unusual leading backslash is used.
497
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200498 Starting a comment in a continuation line results in all following
499 continuation lines to be part of the comment. Since it was like this
500 for a long time, when making it possible to add a comment halfway a
501 sequence of continuation lines, it was not possible to use \", since
502 that was a valid continuation line. Using '"\ ' comes closest, even
503 though it may look a bit weird. Requiring the space after the
504 backslash is to make it very unlikely this is a normal comment line.
505
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01005075. Using Vim packages *packages*
508
509A Vim package is a directory that contains one or more plugins. The
510advantages over normal plugins:
511- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100512 Thus the files are not mixed with files of other plugins. That makes it
513 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100514- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100515 easy to update.
516- A package can contain multiple plugins that depend on each other.
517- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100518 ones that are only loaded when needed with `:packadd`.
519
520
521Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100522
523Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100524package from a zip archive "/tmp/foopack.zip":
525 % mkdir -p ~/.vim/pack/foo
526 % cd ~/.vim/pack/foo
527 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100528
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100529The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100530
531You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100532 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100533 pack/foo/start/foobar/plugin/foo.vim
534 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100535 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100536
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100537When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200538'packpath' for plugins under the "pack/*/start" directory. First all those
539directories are added to 'runtimepath'. Then all the plugins are loaded.
540See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100541
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100542In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
543"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100544
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100545If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
546find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100547
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100548Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100549
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100550Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100551ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100552is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100553
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100554Loading packages automatically will not happen if loading plugins is disabled,
555see |load-plugins|.
556
557To load packages earlier, so that 'runtimepath' gets updated: >
558 :packloadall
559This also works when loading plugins is disabled. The automatic loading will
560only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100561
Bram Moolenaar26852122016-05-24 20:02:38 +0200562If the package has an "after" directory, that directory is added to the end of
563'runtimepath', so that anything there will be loaded later.
564
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100565
566Using a single plugin and loading it automatically ~
567
568If you don't have a package but a single plugin, you need to create the extra
569directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100570 % mkdir -p ~/.vim/pack/foo/start/foobar
571 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100572 % unzip /tmp/someplugin.zip
573
574You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100575 pack/foo/start/foobar/plugin/foo.vim
576 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100577
578From here it works like above.
579
580
581Optional plugins ~
582 *pack-add*
583To load an optional plugin from a pack use the `:packadd` command: >
584 :packadd foodebug
585This searches for "pack/*/opt/foodebug" in 'packpath' and will find
586~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
587
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100588This could be done if some conditions are met. For example, depending on
589whether Vim supports a feature or a dependency is missing.
590
591You can also load an optional plugin at startup, by putting this command in
592your |.vimrc|: >
593 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200594The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100595|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100596
597It is perfectly normal for a package to only have files in the "opt"
598directory. You then need to load each plugin when you want to use it.
599
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100600
601Where to put what ~
602
603Since color schemes, loaded with `:colorscheme`, are found below
604"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
605you put them below "pack/*/opt", for example
606".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
607
608Filetype plugins should go under "pack/*/start", so that they are always
609found. Unless you have more than one plugin for a file type and want to
610select which one to load with `:packadd`. E.g. depending on the compiler
611version: >
612 if foo_compiler_version > 34
613 packadd foo_new
614 else
615 packadd foo_old
616 endif
617
618The "after" directory is most likely not useful in a package. It's not
619disallowed though.
620
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100621==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01006226. Creating Vim packages *package-create*
623
624This assumes you write one or more plugins that you distribute as a package.
625
626If you have two unrelated plugins you would use two packages, so that Vim
627users can chose what they include or not. Or you can decide to use one
628package with optional plugins, and tell the user to add the ones he wants with
629`:packadd`.
630
631Decide how you want to distribute the package. You can create an archive or
632you could use a repository. An archive can be used by more users, but is a
633bit harder to update to a new version. A repository can usually be kept
634up-to-date easily, but it requires a program like "git" to be available.
635You can do both, github can automatically create an archive for a release.
636
637Your directory layout would be like this:
638 start/foobar/plugin/foo.vim " always loaded, defines commands
639 start/foobar/plugin/bar.vim " always loaded, defines commands
640 start/foobar/autoload/foo.vim " loaded when foo command used
641 start/foobar/doc/foo.txt " help for foo.vim
642 start/foobar/doc/tags " help tags
643 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
644 opt/fooextra/autoload/extra.vim " loaded when extra command used
645 opt/fooextra/doc/extra.txt " help for extra.vim
646 opt/fooextra/doc/tags " help tags
647
648This allows for the user to do: >
649 mkdir ~/.vim/pack/myfoobar
650 cd ~/.vim/pack/myfoobar
651 git clone https://github.com/you/foobar.git
652
653Here "myfoobar" is a name that the user can choose, the only condition is that
654it differs from other packages.
655
656In your documentation you explain what the plugins do, and tell the user how
657to load the optional plugin: >
658 :packadd! fooextra
659
660You could add this packadd command in one of your plugins, to be executed when
661the optional plugin is needed.
662
663Run the `:helptags` command to generate the doc/tags file. Including this
664generated file in the package means that the user can drop the package in his
665pack directory and the help command works right away. Don't forget to re-run
666the command after changing the plugin help: >
667 :helptags path/start/foobar/doc
668 :helptags path/opt/fooextra/doc
669
Bram Moolenaar03413f42016-04-12 21:07:15 +0200670
671Dependencies between plugins ~
672 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200673Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +0200674put the common functionality in an autoload directory, so that it will be
675found automatically. Your package would have these files:
676
677 pack/foo/start/one/plugin/one.vim >
678 call foolib#getit()
679< pack/foo/start/two/plugin/two.vim >
680 call foolib#getit()
681< pack/foo/start/lib/autoload/foolib.vim >
682 func foolib#getit()
683
684This works, because loading packages will first add all found directories to
685'runtimepath' before sourcing the plugins.
686
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100687==============================================================================
6887. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
690Besides the obvious messages that you can add to your scripts to find out what
691they are doing, Vim offers a debug mode. This allows you to step through a
692sourced file or user function and set breakpoints.
693
694NOTE: The debugging mode is far from perfect. Debugging will have side
695effects on how Vim works. You cannot use it to debug everything. For
696example, the display is messed up by the debugging messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697
698An alternative to debug mode is setting the 'verbose' option. With a bigger
699number it will give more verbose messages about what Vim is doing.
700
701
702STARTING DEBUG MODE *debug-mode*
703
704To enter debugging mode use one of these methods:
7051. Start Vim with the |-D| argument: >
706 vim -D file.txt
707< Debugging will start as soon as the first vimrc file is sourced. This is
708 useful to find out what is happening when Vim is starting up. A side
709 effect is that Vim will switch the terminal mode before initialisations
710 have finished, with unpredictable results.
711 For a GUI-only version (Windows, Macintosh) the debugging will start as
712 soon as the GUI window has been opened. To make this happen early, add a
713 ":gui" command in the vimrc file.
714 *:debug*
7152. Run a command with ":debug" prepended. Debugging will only be done while
716 this command executes. Useful for debugging a specific script or user
717 function. And for scripts and functions used by autocommands. Example: >
718 :debug edit test.txt.gz
719
7203. Set a breakpoint in a sourced file or user function. You could do this in
721 the command line: >
722 vim -c "breakadd file */explorer.vim" .
723< This will run Vim and stop in the first line of the "explorer.vim" script.
724 Breakpoints can also be set while in debugging mode.
725
726In debugging mode every executed command is displayed before it is executed.
727Comment lines, empty lines and lines that are not executed are skipped. When
728a line contains two commands, separated by "|", each command will be displayed
729separately.
730
731
732DEBUG MODE
733
734Once in debugging mode, the usual Ex commands can be used. For example, to
735inspect the value of a variable: >
736 echo idx
737When inside a user function, this will print the value of the local variable
738"idx". Prepend "g:" to get the value of a global variable: >
739 echo g:idx
740All commands are executed in the context of the current function or script.
741You can also set options, for example setting or resetting 'verbose' will show
742what happens, but you might want to set it just before executing the lines you
743are interested in: >
744 :set verbose=20
745
746Commands that require updating the screen should be avoided, because their
747effect won't be noticed until after leaving debug mode. For example: >
748 :help
749won't be very helpful.
750
751There is a separate command-line history for debug mode.
752
753The line number for a function line is relative to the start of the function.
754If you have trouble figuring out where you are, edit the file that defines
755the function in another Vim, search for the start of the function and do
756"99j". Replace "99" with the line number.
757
758Additionally, these commands can be used:
759 *>cont*
760 cont Continue execution until the next breakpoint is hit.
761 *>quit*
762 quit Abort execution. This is like using CTRL-C, some
763 things might still be executed, doesn't abort
764 everything. Still stops at the next breakpoint.
765 *>next*
766 next Execute the command and come back to debug mode when
767 it's finished. This steps over user function calls
768 and sourced files.
769 *>step*
770 step Execute the command and come back to debug mode for
771 the next command. This steps into called user
772 functions and sourced files.
773 *>interrupt*
774 interrupt This is like using CTRL-C, but unlike ">quit" comes
775 back to debug mode for the next command that is
776 executed. Useful for testing |:finally| and |:catch|
777 on interrupt exceptions.
778 *>finish*
779 finish Finish the current script or user function and come
780 back to debug mode for the command after the one that
781 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100782 *>bt*
783 *>backtrace*
784 *>where*
785 backtrace Show the call stacktrace for current debugging session.
786 bt
787 where
788 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100789 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100790 relative. E.g., ":frame +3" goes three frames up.
791 *>up*
792 up Goes one level up from call stacktrace.
793 *>down*
794 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795
796About the additional commands in debug mode:
797- There is no command-line completion for them, you get the completion for the
798 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100799- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100800 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801- Hitting <CR> will repeat the previous one. When doing another command, this
802 is reset (because it's not clear what you want to repeat).
803- When you want to use the Ex command with the same name, prepend a colon:
804 ":cont", ":next", ":finish" (or shorter).
805
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100806The backtrace shows the hierarchy of function calls, e.g.:
807 >bt ~
808 3 function One[3] ~
809 2 Two[3] ~
810 ->1 Three[3] ~
811 0 Four ~
812 line 1: let four = 4 ~
813
814The "->" points to the current frame. Use "up", "down" and "frame N" to
815select another frame.
816
817In the current frame you can evaluate the local function variables. There is
818no way to see the command at the current line yet.
819
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820
821DEFINING BREAKPOINTS
822 *:breaka* *:breakadd*
823:breaka[dd] func [lnum] {name}
824 Set a breakpoint in a function. Example: >
825 :breakadd func Explore
826< Doesn't check for a valid function name, thus the breakpoint
827 can be set before the function is defined.
828
829:breaka[dd] file [lnum] {name}
830 Set a breakpoint in a sourced file. Example: >
831 :breakadd file 43 .vimrc
832
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000833:breaka[dd] here
834 Set a breakpoint in the current line of the current file.
835 Like doing: >
836 :breakadd file <cursor-line> <current-file>
837< Note that this only works for commands that are executed when
838 sourcing the file, not for a function defined in that file.
839
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100840:breaka[dd] expr {expression}
841 Sets a breakpoint, that will break whenever the {expression}
842 evaluates to a different value. Example: >
843 :breakadd expr g:lnum
844
845< Will break, whenever the global variable lnum changes.
846 Note if you watch a |script-variable| this will break
847 when switching scripts, since the script variable is only
848 valid in the script where it has been defined and if that
849 script is called from several other scripts, this will stop
850 whenever that particular variable will become visible or
851 unaccessible again.
852
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853The [lnum] is the line number of the breakpoint. Vim will stop at or after
854this line. When omitted line 1 is used.
855
Bram Moolenaar05159a02005-02-26 23:04:13 +0000856 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{name} is a pattern that is matched with the file or function name. The
858pattern is like what is used for autocommands. There must be a full match (as
859if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
860of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
861to ignore case |/\c|. Don't include the () for the function name!
862
Bram Moolenaar843ee412004-06-30 16:16:41 +0000863The match for sourced scripts is done against the full file name. If no path
864is specified the current directory is used. Examples: >
865 breakadd file explorer.vim
866matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000868matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000870matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871
872The match for functions is done against the name as it's shown in the output
873of ":function". For local functions this means that something like "<SNR>99_"
874is prepended.
875
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000876Note that functions are first loaded and later executed. When they are loaded
877the "file" breakpoints are checked, when they are executed the "func"
878breakpoints.
879
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880
881DELETING BREAKPOINTS
882 *:breakd* *:breakdel* *E161*
883:breakd[el] {nr}
884 Delete breakpoint {nr}. Use |:breaklist| to see the number of
885 each breakpoint.
886
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000887:breakd[el] *
888 Delete all breakpoints.
889
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890:breakd[el] func [lnum] {name}
891 Delete a breakpoint in a function.
892
893:breakd[el] file [lnum] {name}
894 Delete a breakpoint in a sourced file.
895
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000896:breakd[el] here
897 Delete a breakpoint at the current line of the current file.
898
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899When [lnum] is omitted, the first breakpoint in the function or file is
900deleted.
901The {name} must be exactly the same as what was typed for the ":breakadd"
902command. "explorer", "*explorer.vim" and "*explorer*" are different.
903
904
905LISTING BREAKPOINTS
906 *:breakl* *:breaklist*
907:breakl[ist]
908 List all breakpoints.
909
910
911OBSCURE
912
913 *:debugg* *:debuggreedy*
914:debugg[reedy]
915 Read debug mode commands from the normal input stream, instead
916 of getting them directly from the user. Only useful for test
917 scripts. Example: >
918 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
919
920:0debugg[reedy]
921 Undo ":debuggreedy": get debug mode commands directly from the
922 user, don't use typeahead for debug commands.
923
Bram Moolenaar05159a02005-02-26 23:04:13 +0000924==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01009258. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000926
Bram Moolenaar996343d2010-07-04 22:20:21 +0200927Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000928functions and/or scripts. The |+profile| feature is required for this.
929It is only included when Vim was compiled with "huge" features.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000930
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000931You can also use the |reltime()| function to measure time. This only requires
932the |+reltime| feature, which is present more often.
933
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200934For profiling syntax highlighting see |:syntime|.
935
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100936For example, to profile the one_script.vim script file: >
937 :profile start /tmp/one_script_profile
938 :profile file one_script.vim
939 :source one_script.vim
940 :exit
941
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200942
Bram Moolenaar05159a02005-02-26 23:04:13 +0000943:prof[ile] start {fname} *:prof* *:profile* *E750*
944 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +0200945 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000946 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000947 The variable |v:profiling| is set to one.
948
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000949:prof[ile] pause
950 Don't profile until the following ":profile continue". Can be
951 used when doing something that should not be counted (e.g., an
952 external command). Does not nest.
953
954:prof[ile] continue
955 Continue profiling after ":profile pause".
956
Bram Moolenaar05159a02005-02-26 23:04:13 +0000957:prof[ile] func {pattern}
958 Profile function that matches the pattern {pattern}.
959 See |:debug-name| for how {pattern} is used.
960
961:prof[ile][!] file {pattern}
962 Profile script file that matches the pattern {pattern}.
963 See |:debug-name| for how {pattern} is used.
964 This only profiles the script itself, not the functions
965 defined in it.
966 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100967 will also be profiled.
968 Note that profiling only starts when the script is loaded
969 after this command. A :profile command in the script itself
970 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000971
972
Bram Moolenaard9fba312005-06-26 22:34:35 +0000973:profd[el] ... *:profd* *:profdel*
974 Stop profiling for the arguments specified. See |:breakdel|
975 for the arguments.
976
977
Bram Moolenaar05159a02005-02-26 23:04:13 +0000978You must always start with a ":profile start fname" command. The resulting
979file is written when Vim exits. Here is an example of the output, with line
980numbers prepended for the explanation:
981
982 1 FUNCTION Test2() ~
983 2 Called 1 time ~
984 3 Total time: 0.155251 ~
985 4 Self time: 0.002006 ~
986 5 ~
987 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000988 7 9 0.000096 for i in range(8) ~
989 8 8 0.153655 0.000410 call Test3() ~
990 9 8 0.000070 endfor ~
991 10 " Ask a question ~
992 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +0000993
994The header (lines 1-4) gives the time for the whole function. The "Total"
995time is the time passed while the function was executing. The "Self" time is
996the "Total" time reduced by time spent in:
997- other user defined functions
998- sourced scripts
999- executed autocommands
1000- external (shell) commands
1001
1002Lines 7-11 show the time spent in each executed line. Lines that are not
1003executed do not count. Thus a comment line is never counted.
1004
1005The Count column shows how many times a line was executed. Note that the
1006"for" command in line 7 is executed one more time as the following lines.
1007That is because the line is also executed to detect the end of the loop.
1008
1009The time Vim spends waiting for user input isn't counted at all. Thus how
1010long you take to respond to the input() prompt is irrelevant.
1011
1012Profiling should give a good indication of where time is spent, but keep in
1013mind there are various things that may clobber the results:
1014
1015- The accuracy of the time measured depends on the gettimeofday() system
1016 function. It may only be as accurate as 1/100 second, even though the times
1017 are displayed in micro seconds.
1018
1019- Real elapsed time is measured, if other processes are busy they may cause
1020 delays at unpredictable moments. You may want to run the profiling several
1021 times and use the lowest results.
1022
1023- If you have several commands in one line you only get one time. Split the
1024 line to see the time for the individual commands.
1025
1026- The time of the lines added up is mostly less than the time of the whole
1027 function. There is some overhead in between.
1028
1029- Functions that are deleted before Vim exits will not produce profiling
1030 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001031 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001032 : delfunc MyFunc
1033 :endif
1034<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001035- Profiling may give weird results on multi-processor systems, when sleep
1036 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001037
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001038- The "self" time is wrong when a function is used recursively.
1039
1040
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001041 vim:tw=78:ts=8:noet:ft=help:norl: