blob: 8538d0c2f2e180797f13414d4a1a6ab66cc5c52f [file] [log] [blame]
Bram Moolenaarb1c91982018-05-17 17:04:55 +02001*repeat.txt* For Vim version 8.1. Last change: 2018 Mar 04
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
166 [addr] (default is current line). {not in Vi}
167
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
170 line [addr] (default is current line). {Vi: only in
171 some versions}
172
173==============================================================================
1744. Using Vim scripts *using-scripts*
175
176For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
177
178 *:so* *:source* *load-vim-script*
179:so[urce] {file} Read Ex commands from {file}. These are commands that
180 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000181 Triggers the |SourcePre| autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
183:so[urce]! {file} Read Vim commands from {file}. These are commands
184 that are executed from Normal mode, like you type
185 them.
186 When used after |:global|, |:argdo|, |:windo|,
187 |:bufdo|, in a loop or when another command follows
188 the display won't be updated while executing the
189 commands.
190 {not in Vi}
191
192 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100193:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100195 by 'runtimepath' and/or 'packpath'. There is no error
196 for non-existing files.
197
198 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 :runtime syntax/c.vim
200
201< There can be multiple {file} arguments, separated by
202 spaces. Each {file} is searched for in the first
203 directory from 'runtimepath', then in the second
204 directory, etc. Use a backslash to include a space
205 inside {file} (although it's better not to use spaces
206 in file names, it causes trouble).
207
208 When [!] is included, all found files are sourced.
209 When it is not included only the first found file is
210 sourced.
211
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100212 When [where] is omitted only 'runtimepath' is used.
213 Other values:
214 START search under "start" in 'packpath'
215 OPT search under "opt" in 'packpath'
216 PACK search under "start" and "opt" in
217 'packpath'
218 ALL first use 'runtimepath', then search
219 under "start" and "opt" in 'packpath'
220
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 When {file} contains wildcards it is expanded to all
222 matching files. Example: >
223 :runtime! plugin/*.vim
224< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000225 starting up. This similar command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226 :runtime plugin/*.vim
227< would source the first file only.
228
229 When 'verbose' is one or higher, there is a message
230 when no file could be found.
231 When 'verbose' is two or higher, there is a message
232 about each searched file.
233 {not in Vi}
234
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100235 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100236:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
237 and source any plugin files found. The directory must
238 match:
239 pack/*/opt/{name} ~
240 The directory is added to 'runtimepath' if it wasn't
241 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200242 If the directory pack/*/opt/{name}/after exists it is
243 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100244
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100245 If loading packages from "pack/*/start" was skipped,
246 then this directory is searched first:
247 pack/*/start/{name} ~
248
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100249 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200250 of the .vim file. All the files matching the pattern
251 pack/*/opt/{name}/plugin/**/*.vim ~
252 will be sourced. This allows for using subdirectories
253 below "plugin", just like with plugins in
254 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100255
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100256 If the filetype detection was not enabled yet (this
257 is usually done with a "syntax enable" or "filetype
258 on" command in your .vimrc file), this will also look
259 for "{name}/ftdetect/*.vim" files.
260
261 When the optional ! is added no plugin files or
262 ftdetect scripts are loaded, only the matching
263 directories are added to 'runtimepath'. This is
264 useful in your .vimrc. The plugins will then be
265 loaded during initialization, see |load-plugins|.
266
267 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200268 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100269
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100270 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200271:packl[oadall][!] Load all packages in the "start" directory under each
272 entry in 'packpath'.
273
274 First all the directories found are added to
275 'runtimepath', then the plugins found in the
276 directories are sourced. This allows for a plugin to
277 depend on something of another plugin, e.g. an
278 "autoload" directory. See |packload-two-steps| for
279 how this can be useful.
280
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100281 This is normally done automatically during startup,
282 after loading your .vimrc file. With this command it
283 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200284
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100285 Packages will be loaded only once. After this command
286 it won't happen again. When the optional ! is added
287 this command will load packages even when done before.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200288
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200289 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100290 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100291 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200292 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100293
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
295 Specify the character encoding used in the script.
296 The following lines will be converted from [encoding]
297 to the value of the 'encoding' option, if they are
298 different. Examples: >
299 scriptencoding iso-8859-5
300 scriptencoding cp932
301<
302 When [encoding] is empty, no conversion is done. This
303 can be used to restrict conversion to a sequence of
304 lines: >
305 scriptencoding euc-jp
306 ... lines to be converted ...
307 scriptencoding
308 ... not converted ...
309
310< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200311 is no error message and no conversion is done. When a
312 line can't be converted there is no error and the
313 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
315 Don't use "ucs-2" or "ucs-4", scripts cannot be in
316 these encodings (they would contain NUL bytes).
317 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200318 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319 to use ":scriptencoding utf-8" then.
320
Bram Moolenaar3df01732017-02-17 22:47:16 +0100321 If you set the 'encoding' option in your |.vimrc|,
322 `:scriptencoding` must be placed after that. E.g.: >
323 set encoding=utf-8
324 scriptencoding utf-8
325<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326 When compiled without the |+multi_byte| feature this
327 command is ignored.
328 {not in Vi}
329
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100330 *:scr* *:scriptnames*
331:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332 first sourced. The number is used for the script ID
333 |<SID>|.
334 {not in Vi} {not available when compiled without the
335 |+eval| feature}
336
337 *:fini* *:finish* *E168*
338:fini[sh] Stop sourcing a script. Can only be used in a Vim
339 script file. This is a quick way to skip the rest of
340 the file. If it is used after a |:try| but before the
341 matching |:finally| (if present), the commands
342 following the ":finally" up to the matching |:endtry|
343 are executed first. This process applies to all
344 nested ":try"s in the script. The outermost ":endtry"
345 then stops sourcing the script. {not in Vi}
346
347All commands and command sequences can be repeated by putting them in a named
348register and then executing it. There are two ways to get the commands in the
349register:
350- Use the record command "q". You type the commands once, and while they are
351 being executed they are stored in a register. Easy, because you can see
352 what you are doing. If you make a mistake, "p"ut the register into the
353 file, edit the command sequence, and then delete it into the register
354 again. You can continue recording by appending to the register (use an
355 uppercase letter).
356- Delete or yank the command sequence into the register.
357
358Often used command sequences can be put under a function key with the ':map'
359command.
360
361An alternative is to put the commands in a file, and execute them with the
362':source!' command. Useful for long command sequences. Can be combined with
363the ':map' command to put complicated commands under a function key.
364
365The ':source' command reads Ex commands from a file line by line. You will
366have to type any needed keyboard input. The ':source!' command reads from a
367script file character by character, interpreting each character as if you
368typed it.
369
370Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
371you ':source' a file with the line "!ls" in it, you will have to type the
372<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
373the next characters from that file are read until a <CR> is found. You will
374not have to type <CR> yourself, unless ":!ls" was the last line in the file.
375
376It is possible to put ':source[!]' commands in the script file, so you can
377make a top-down hierarchy of script files. The ':source' command can be
378nested as deep as the number of files that can be opened at one time (about
37915). The ':source!' command can be nested up to 15 levels deep.
380
381You can use the "<sfile>" string (literally, this is not a special key) inside
382of the sourced file, in places where a file name is expected. It will be
383replaced by the file name of the sourced file. For example, if you have a
384"other.vimrc" file in the same directory as your ".vimrc" file, you can source
385it from your ".vimrc" file with this command: >
386 :source <sfile>:h/other.vimrc
387
388In script files terminal-dependent key codes are represented by
389terminal-independent two character codes. This means that they can be used
390in the same way on different kinds of terminals. The first character of a
391key code is 0x80 or 128, shown on the screen as "~@". The second one can be
392found in the list |key-notation|. Any of these codes can also be entered
393with CTRL-V followed by the three digit decimal code. This does NOT work for
394the <t_xx> termcap codes, these can only be used in mappings.
395
396 *:source_crnl* *W15*
397MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have
398<CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s
399(for example, a file made on Unix), this will be recognized if 'fileformats'
400is not empty and the first line does not end in a <CR>. This fails if the
401first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If
402the first line ends in a <CR>, but following ones don't, you will get an error
403message, because the <CR> from the first lines will be lost.
404
Bram Moolenaar520470a2005-06-16 21:59:56 +0000405Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406These always work. If you are using a file with <NL> <EOL>s (for example, a
407file made on Unix), this will be recognized if 'fileformats' is not empty and
408the first line does not end in a <CR>. Be careful not to use a file with <NL>
409linebreaks which has a <CR> in first line.
410
411On other systems, Vim expects ":source"ed files to end in a <NL>. These
412always work. If you are using a file with <CR><NL> <EOL>s (for example, a
413file made on MS-DOS), all lines will have a trailing <CR>. This may cause
414problems for some commands (e.g., mappings). There is no automatic <EOL>
415detection, because it's common to start with a line that defines a mapping
416that ends in a <CR>, which will confuse the automaton.
417
418 *line-continuation*
419Long lines in a ":source"d Ex command script file can be split by inserting
420a line continuation symbol "\" (backslash) at the start of the next line.
421There can be white space before the backslash, which is ignored.
422
423Example: the lines >
424 :set comments=sr:/*,mb:*,el:*/,
425 \://,
426 \b:#,
427 \:%,
428 \n:>,
429 \fb:-
430are interpreted as if they were given in one line:
431 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
432
433All leading whitespace characters in the line before a backslash are ignored.
434Note however that trailing whitespace in the line before it cannot be
435inserted freely; it depends on the position where a command is split up
436whether additional whitespace is allowed or not.
437
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100438When a space is required it's best to put it right after the backslash. A
439space at the end of a line is hard to see and may be accidentally deleted. >
440 :syn match Comment
441 \ "very long regexp"
442 \ keepend
443
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444There is a problem with the ":append" and ":insert" commands: >
445 :1append
446 \asdf
447 .
448The backslash is seen as a line-continuation symbol, thus this results in the
449command: >
450 :1appendasdf
451 .
452To avoid this, add the 'C' flag to the 'cpoptions' option: >
453 :set cpo+=C
454 :1append
455 \asdf
456 .
457 :set cpo-=C
458
459Note that when the commands are inside a function, you need to add the 'C'
460flag when defining the function, it is not relevant when executing it. >
461 :set cpo+=C
462 :function Foo()
463 :1append
464 \asdf
465 .
466 :endfunction
467 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200468<
469 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200470To add a comment in between the lines start with '"\ '. Notice the space
471after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200472 let array = [
473 "\ first entry comment
474 \ 'first',
475 "\ second entry comment
476 \ 'second',
477 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
479Rationale:
480 Most programs work with a trailing backslash to indicate line
481 continuation. Using this in Vim would cause incompatibility with Vi.
482 For example for this Vi mapping: >
483 :map xx asdf\
484< Therefore the unusual leading backslash is used.
485
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200486 Starting a comment in a continuation line results in all following
487 continuation lines to be part of the comment. Since it was like this
488 for a long time, when making it possible to add a comment halfway a
489 sequence of continuation lines, it was not possible to use \", since
490 that was a valid continuation line. Using '"\ ' comes closest, even
491 though it may look a bit weird. Requiring the space after the
492 backslash is to make it very unlikely this is a normal comment line.
493
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01004955. Using Vim packages *packages*
496
497A Vim package is a directory that contains one or more plugins. The
498advantages over normal plugins:
499- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100500 Thus the files are not mixed with files of other plugins. That makes it
501 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100502- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100503 easy to update.
504- A package can contain multiple plugins that depend on each other.
505- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100506 ones that are only loaded when needed with `:packadd`.
507
508
509Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100510
511Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100512package from a zip archive "/tmp/foopack.zip":
513 % mkdir -p ~/.vim/pack/foo
514 % cd ~/.vim/pack/foo
515 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100516
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100517The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100518
519You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100520 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100521 pack/foo/start/foobar/plugin/foo.vim
522 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100523 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100524
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100525When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200526'packpath' for plugins under the "pack/*/start" directory. First all those
527directories are added to 'runtimepath'. Then all the plugins are loaded.
528See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100529
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100530In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
531"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100532
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100533If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
534find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100535
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100536Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100537
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100538Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100539ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100540is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100541
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100542Loading packages automatically will not happen if loading plugins is disabled,
543see |load-plugins|.
544
545To load packages earlier, so that 'runtimepath' gets updated: >
546 :packloadall
547This also works when loading plugins is disabled. The automatic loading will
548only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100549
Bram Moolenaar26852122016-05-24 20:02:38 +0200550If the package has an "after" directory, that directory is added to the end of
551'runtimepath', so that anything there will be loaded later.
552
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100553
554Using a single plugin and loading it automatically ~
555
556If you don't have a package but a single plugin, you need to create the extra
557directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100558 % mkdir -p ~/.vim/pack/foo/start/foobar
559 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100560 % unzip /tmp/someplugin.zip
561
562You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100563 pack/foo/start/foobar/plugin/foo.vim
564 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100565
566From here it works like above.
567
568
569Optional plugins ~
570 *pack-add*
571To load an optional plugin from a pack use the `:packadd` command: >
572 :packadd foodebug
573This searches for "pack/*/opt/foodebug" in 'packpath' and will find
574~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
575
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100576This could be done if some conditions are met. For example, depending on
577whether Vim supports a feature or a dependency is missing.
578
579You can also load an optional plugin at startup, by putting this command in
580your |.vimrc|: >
581 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200582The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100583|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100584
585It is perfectly normal for a package to only have files in the "opt"
586directory. You then need to load each plugin when you want to use it.
587
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100588
589Where to put what ~
590
591Since color schemes, loaded with `:colorscheme`, are found below
592"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
593you put them below "pack/*/opt", for example
594".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
595
596Filetype plugins should go under "pack/*/start", so that they are always
597found. Unless you have more than one plugin for a file type and want to
598select which one to load with `:packadd`. E.g. depending on the compiler
599version: >
600 if foo_compiler_version > 34
601 packadd foo_new
602 else
603 packadd foo_old
604 endif
605
606The "after" directory is most likely not useful in a package. It's not
607disallowed though.
608
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100609==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01006106. Creating Vim packages *package-create*
611
612This assumes you write one or more plugins that you distribute as a package.
613
614If you have two unrelated plugins you would use two packages, so that Vim
615users can chose what they include or not. Or you can decide to use one
616package with optional plugins, and tell the user to add the ones he wants with
617`:packadd`.
618
619Decide how you want to distribute the package. You can create an archive or
620you could use a repository. An archive can be used by more users, but is a
621bit harder to update to a new version. A repository can usually be kept
622up-to-date easily, but it requires a program like "git" to be available.
623You can do both, github can automatically create an archive for a release.
624
625Your directory layout would be like this:
626 start/foobar/plugin/foo.vim " always loaded, defines commands
627 start/foobar/plugin/bar.vim " always loaded, defines commands
628 start/foobar/autoload/foo.vim " loaded when foo command used
629 start/foobar/doc/foo.txt " help for foo.vim
630 start/foobar/doc/tags " help tags
631 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
632 opt/fooextra/autoload/extra.vim " loaded when extra command used
633 opt/fooextra/doc/extra.txt " help for extra.vim
634 opt/fooextra/doc/tags " help tags
635
636This allows for the user to do: >
637 mkdir ~/.vim/pack/myfoobar
638 cd ~/.vim/pack/myfoobar
639 git clone https://github.com/you/foobar.git
640
641Here "myfoobar" is a name that the user can choose, the only condition is that
642it differs from other packages.
643
644In your documentation you explain what the plugins do, and tell the user how
645to load the optional plugin: >
646 :packadd! fooextra
647
648You could add this packadd command in one of your plugins, to be executed when
649the optional plugin is needed.
650
651Run the `:helptags` command to generate the doc/tags file. Including this
652generated file in the package means that the user can drop the package in his
653pack directory and the help command works right away. Don't forget to re-run
654the command after changing the plugin help: >
655 :helptags path/start/foobar/doc
656 :helptags path/opt/fooextra/doc
657
Bram Moolenaar03413f42016-04-12 21:07:15 +0200658
659Dependencies between plugins ~
660 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200661Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +0200662put the common functionality in an autoload directory, so that it will be
663found automatically. Your package would have these files:
664
665 pack/foo/start/one/plugin/one.vim >
666 call foolib#getit()
667< pack/foo/start/two/plugin/two.vim >
668 call foolib#getit()
669< pack/foo/start/lib/autoload/foolib.vim >
670 func foolib#getit()
671
672This works, because loading packages will first add all found directories to
673'runtimepath' before sourcing the plugins.
674
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100675==============================================================================
6767. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678Besides the obvious messages that you can add to your scripts to find out what
679they are doing, Vim offers a debug mode. This allows you to step through a
680sourced file or user function and set breakpoints.
681
682NOTE: The debugging mode is far from perfect. Debugging will have side
683effects on how Vim works. You cannot use it to debug everything. For
684example, the display is messed up by the debugging messages.
685{Vi does not have a debug mode}
686
687An alternative to debug mode is setting the 'verbose' option. With a bigger
688number it will give more verbose messages about what Vim is doing.
689
690
691STARTING DEBUG MODE *debug-mode*
692
693To enter debugging mode use one of these methods:
6941. Start Vim with the |-D| argument: >
695 vim -D file.txt
696< Debugging will start as soon as the first vimrc file is sourced. This is
697 useful to find out what is happening when Vim is starting up. A side
698 effect is that Vim will switch the terminal mode before initialisations
699 have finished, with unpredictable results.
700 For a GUI-only version (Windows, Macintosh) the debugging will start as
701 soon as the GUI window has been opened. To make this happen early, add a
702 ":gui" command in the vimrc file.
703 *:debug*
7042. Run a command with ":debug" prepended. Debugging will only be done while
705 this command executes. Useful for debugging a specific script or user
706 function. And for scripts and functions used by autocommands. Example: >
707 :debug edit test.txt.gz
708
7093. Set a breakpoint in a sourced file or user function. You could do this in
710 the command line: >
711 vim -c "breakadd file */explorer.vim" .
712< This will run Vim and stop in the first line of the "explorer.vim" script.
713 Breakpoints can also be set while in debugging mode.
714
715In debugging mode every executed command is displayed before it is executed.
716Comment lines, empty lines and lines that are not executed are skipped. When
717a line contains two commands, separated by "|", each command will be displayed
718separately.
719
720
721DEBUG MODE
722
723Once in debugging mode, the usual Ex commands can be used. For example, to
724inspect the value of a variable: >
725 echo idx
726When inside a user function, this will print the value of the local variable
727"idx". Prepend "g:" to get the value of a global variable: >
728 echo g:idx
729All commands are executed in the context of the current function or script.
730You can also set options, for example setting or resetting 'verbose' will show
731what happens, but you might want to set it just before executing the lines you
732are interested in: >
733 :set verbose=20
734
735Commands that require updating the screen should be avoided, because their
736effect won't be noticed until after leaving debug mode. For example: >
737 :help
738won't be very helpful.
739
740There is a separate command-line history for debug mode.
741
742The line number for a function line is relative to the start of the function.
743If you have trouble figuring out where you are, edit the file that defines
744the function in another Vim, search for the start of the function and do
745"99j". Replace "99" with the line number.
746
747Additionally, these commands can be used:
748 *>cont*
749 cont Continue execution until the next breakpoint is hit.
750 *>quit*
751 quit Abort execution. This is like using CTRL-C, some
752 things might still be executed, doesn't abort
753 everything. Still stops at the next breakpoint.
754 *>next*
755 next Execute the command and come back to debug mode when
756 it's finished. This steps over user function calls
757 and sourced files.
758 *>step*
759 step Execute the command and come back to debug mode for
760 the next command. This steps into called user
761 functions and sourced files.
762 *>interrupt*
763 interrupt This is like using CTRL-C, but unlike ">quit" comes
764 back to debug mode for the next command that is
765 executed. Useful for testing |:finally| and |:catch|
766 on interrupt exceptions.
767 *>finish*
768 finish Finish the current script or user function and come
769 back to debug mode for the command after the one that
770 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100771 *>bt*
772 *>backtrace*
773 *>where*
774 backtrace Show the call stacktrace for current debugging session.
775 bt
776 where
777 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100778 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100779 relative. E.g., ":frame +3" goes three frames up.
780 *>up*
781 up Goes one level up from call stacktrace.
782 *>down*
783 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
785About the additional commands in debug mode:
786- There is no command-line completion for them, you get the completion for the
787 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100788- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100789 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790- Hitting <CR> will repeat the previous one. When doing another command, this
791 is reset (because it's not clear what you want to repeat).
792- When you want to use the Ex command with the same name, prepend a colon:
793 ":cont", ":next", ":finish" (or shorter).
794
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100795The backtrace shows the hierarchy of function calls, e.g.:
796 >bt ~
797 3 function One[3] ~
798 2 Two[3] ~
799 ->1 Three[3] ~
800 0 Four ~
801 line 1: let four = 4 ~
802
803The "->" points to the current frame. Use "up", "down" and "frame N" to
804select another frame.
805
806In the current frame you can evaluate the local function variables. There is
807no way to see the command at the current line yet.
808
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
810DEFINING BREAKPOINTS
811 *:breaka* *:breakadd*
812:breaka[dd] func [lnum] {name}
813 Set a breakpoint in a function. Example: >
814 :breakadd func Explore
815< Doesn't check for a valid function name, thus the breakpoint
816 can be set before the function is defined.
817
818:breaka[dd] file [lnum] {name}
819 Set a breakpoint in a sourced file. Example: >
820 :breakadd file 43 .vimrc
821
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000822:breaka[dd] here
823 Set a breakpoint in the current line of the current file.
824 Like doing: >
825 :breakadd file <cursor-line> <current-file>
826< Note that this only works for commands that are executed when
827 sourcing the file, not for a function defined in that file.
828
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100829:breaka[dd] expr {expression}
830 Sets a breakpoint, that will break whenever the {expression}
831 evaluates to a different value. Example: >
832 :breakadd expr g:lnum
833
834< Will break, whenever the global variable lnum changes.
835 Note if you watch a |script-variable| this will break
836 when switching scripts, since the script variable is only
837 valid in the script where it has been defined and if that
838 script is called from several other scripts, this will stop
839 whenever that particular variable will become visible or
840 unaccessible again.
841
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842The [lnum] is the line number of the breakpoint. Vim will stop at or after
843this line. When omitted line 1 is used.
844
Bram Moolenaar05159a02005-02-26 23:04:13 +0000845 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846{name} is a pattern that is matched with the file or function name. The
847pattern is like what is used for autocommands. There must be a full match (as
848if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
849of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
850to ignore case |/\c|. Don't include the () for the function name!
851
Bram Moolenaar843ee412004-06-30 16:16:41 +0000852The match for sourced scripts is done against the full file name. If no path
853is specified the current directory is used. Examples: >
854 breakadd file explorer.vim
855matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000857matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000859matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860
861The match for functions is done against the name as it's shown in the output
862of ":function". For local functions this means that something like "<SNR>99_"
863is prepended.
864
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000865Note that functions are first loaded and later executed. When they are loaded
866the "file" breakpoints are checked, when they are executed the "func"
867breakpoints.
868
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869
870DELETING BREAKPOINTS
871 *:breakd* *:breakdel* *E161*
872:breakd[el] {nr}
873 Delete breakpoint {nr}. Use |:breaklist| to see the number of
874 each breakpoint.
875
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000876:breakd[el] *
877 Delete all breakpoints.
878
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879:breakd[el] func [lnum] {name}
880 Delete a breakpoint in a function.
881
882:breakd[el] file [lnum] {name}
883 Delete a breakpoint in a sourced file.
884
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000885:breakd[el] here
886 Delete a breakpoint at the current line of the current file.
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888When [lnum] is omitted, the first breakpoint in the function or file is
889deleted.
890The {name} must be exactly the same as what was typed for the ":breakadd"
891command. "explorer", "*explorer.vim" and "*explorer*" are different.
892
893
894LISTING BREAKPOINTS
895 *:breakl* *:breaklist*
896:breakl[ist]
897 List all breakpoints.
898
899
900OBSCURE
901
902 *:debugg* *:debuggreedy*
903:debugg[reedy]
904 Read debug mode commands from the normal input stream, instead
905 of getting them directly from the user. Only useful for test
906 scripts. Example: >
907 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
908
909:0debugg[reedy]
910 Undo ":debuggreedy": get debug mode commands directly from the
911 user, don't use typeahead for debug commands.
912
Bram Moolenaar05159a02005-02-26 23:04:13 +0000913==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01009148. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000915
Bram Moolenaar996343d2010-07-04 22:20:21 +0200916Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000917functions and/or scripts. The |+profile| feature is required for this.
918It is only included when Vim was compiled with "huge" features.
919{Vi does not have profiling}
920
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000921You can also use the |reltime()| function to measure time. This only requires
922the |+reltime| feature, which is present more often.
923
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200924For profiling syntax highlighting see |:syntime|.
925
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100926For example, to profile the one_script.vim script file: >
927 :profile start /tmp/one_script_profile
928 :profile file one_script.vim
929 :source one_script.vim
930 :exit
931
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200932
Bram Moolenaar05159a02005-02-26 23:04:13 +0000933:prof[ile] start {fname} *:prof* *:profile* *E750*
934 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +0200935 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000936 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000937 The variable |v:profiling| is set to one.
938
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000939:prof[ile] pause
940 Don't profile until the following ":profile continue". Can be
941 used when doing something that should not be counted (e.g., an
942 external command). Does not nest.
943
944:prof[ile] continue
945 Continue profiling after ":profile pause".
946
Bram Moolenaar05159a02005-02-26 23:04:13 +0000947:prof[ile] func {pattern}
948 Profile function that matches the pattern {pattern}.
949 See |:debug-name| for how {pattern} is used.
950
951:prof[ile][!] file {pattern}
952 Profile script file that matches the pattern {pattern}.
953 See |:debug-name| for how {pattern} is used.
954 This only profiles the script itself, not the functions
955 defined in it.
956 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100957 will also be profiled.
958 Note that profiling only starts when the script is loaded
959 after this command. A :profile command in the script itself
960 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000961
962
Bram Moolenaard9fba312005-06-26 22:34:35 +0000963:profd[el] ... *:profd* *:profdel*
964 Stop profiling for the arguments specified. See |:breakdel|
965 for the arguments.
966
967
Bram Moolenaar05159a02005-02-26 23:04:13 +0000968You must always start with a ":profile start fname" command. The resulting
969file is written when Vim exits. Here is an example of the output, with line
970numbers prepended for the explanation:
971
972 1 FUNCTION Test2() ~
973 2 Called 1 time ~
974 3 Total time: 0.155251 ~
975 4 Self time: 0.002006 ~
976 5 ~
977 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000978 7 9 0.000096 for i in range(8) ~
979 8 8 0.153655 0.000410 call Test3() ~
980 9 8 0.000070 endfor ~
981 10 " Ask a question ~
982 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +0000983
984The header (lines 1-4) gives the time for the whole function. The "Total"
985time is the time passed while the function was executing. The "Self" time is
986the "Total" time reduced by time spent in:
987- other user defined functions
988- sourced scripts
989- executed autocommands
990- external (shell) commands
991
992Lines 7-11 show the time spent in each executed line. Lines that are not
993executed do not count. Thus a comment line is never counted.
994
995The Count column shows how many times a line was executed. Note that the
996"for" command in line 7 is executed one more time as the following lines.
997That is because the line is also executed to detect the end of the loop.
998
999The time Vim spends waiting for user input isn't counted at all. Thus how
1000long you take to respond to the input() prompt is irrelevant.
1001
1002Profiling should give a good indication of where time is spent, but keep in
1003mind there are various things that may clobber the results:
1004
1005- The accuracy of the time measured depends on the gettimeofday() system
1006 function. It may only be as accurate as 1/100 second, even though the times
1007 are displayed in micro seconds.
1008
1009- Real elapsed time is measured, if other processes are busy they may cause
1010 delays at unpredictable moments. You may want to run the profiling several
1011 times and use the lowest results.
1012
1013- If you have several commands in one line you only get one time. Split the
1014 line to see the time for the individual commands.
1015
1016- The time of the lines added up is mostly less than the time of the whole
1017 function. There is some overhead in between.
1018
1019- Functions that are deleted before Vim exits will not produce profiling
1020 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001021 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001022 : delfunc MyFunc
1023 :endif
1024<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001025- Profiling may give weird results on multi-processor systems, when sleep
1026 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001027
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001028- The "self" time is wrong when a function is used recursively.
1029
1030
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001031 vim:tw=78:ts=8:noet:ft=help:norl: