blob: 195a2025a5e206b554b638df2c8a47773b5b9e03 [file] [log] [blame]
Bram Moolenaarb2049902021-01-24 12:53:53 +01001*repeat.txt* For Vim version 8.2. Last change: 2021 Jan 23
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 Moolenaar664f3cf2019-12-07 16:03:51 +010082 *E147*
Bram Moolenaarf84b1222017-06-10 14:29:52 +020083When 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
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200127 recorded macro.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200129 Note: The recording happens while you type, replaying
130 the register happens as if the keys come from a
131 mapping. This matters, for example, for undo, which
132 only syncs when commands were typed.
133
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134q Stops recording. (Implementation note: The 'q' that
135 stops recording is not stored in the register, unless
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200136 it was the result of a mapping)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137
138 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200139@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140 times. Note that register '%' (name of the current
141 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100142 used.
143 The register is executed like a mapping, that means
144 that the difference between 'wildchar' and 'wildcharm'
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200145 applies, and undo might not be synced in the same way.
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100146 For "@=" you are prompted to enter an expression. The
147 result of the expression is then executed.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200148 See also |@:|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000150 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151@@ Repeat the previous @{0-9a-z":*} [count] times.
152
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200153:[addr]*{0-9a-z".=+} *:@* *:star*
154:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155 command. First set cursor at line [addr] (default is
156 current line). When the last line in the register does
157 not have a <CR> it will be added automatically when
158 the 'e' flag is present in 'cpoptions'.
159 Note that the ":*" command is only recognized when the
160 '*' flag is present in 'cpoptions'. This is NOT the
161 default when 'nocompatible' is used.
162 For ":@=" the last used expression is used. The
163 result of evaluating the expression is executed as an
164 Ex command.
165 Mappings are not recognized in these commands.
Bram Moolenaar856c1112020-06-17 21:47:23 +0200166 When the |line-continuation| character (\) is present
167 at the beginning of a line in a linewise register,
168 then it is combined with the previous line. This is
169 useful for yanking and executing parts of a Vim
170 script.
Bram Moolenaara6c27c42019-05-09 19:16:22 +0200171 Future: Will execute the register for each line in the
172 address range.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173
174 *:@:*
175:[addr]@: Repeat last command-line. First set cursor at line
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200176 [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaar7e1479b2016-09-11 15:07:27 +0200178:[addr]@ *:@@*
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200179:[addr]@@ Repeat the previous :@{register}. First set cursor at
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200180 line [addr] (default is current line).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
182==============================================================================
1834. Using Vim scripts *using-scripts*
184
185For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
186
187 *:so* *:source* *load-vim-script*
188:so[urce] {file} Read Ex commands from {file}. These are commands that
189 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000190 Triggers the |SourcePre| autocommand.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200191 *:source!*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192:so[urce]! {file} Read Vim commands from {file}. These are commands
193 that are executed from Normal mode, like you type
194 them.
195 When used after |:global|, |:argdo|, |:windo|,
196 |:bufdo|, in a loop or when another command follows
197 the display won't be updated while executing the
198 commands.
Bram Moolenaar68e65602019-05-26 21:33:31 +0200199 Cannot be used in the |sandbox|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200
201 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100202:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100204 by 'runtimepath' and/or 'packpath'. There is no error
205 for non-existing files.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100206
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100207 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 :runtime syntax/c.vim
209
210< There can be multiple {file} arguments, separated by
211 spaces. Each {file} is searched for in the first
212 directory from 'runtimepath', then in the second
213 directory, etc. Use a backslash to include a space
214 inside {file} (although it's better not to use spaces
215 in file names, it causes trouble).
216
217 When [!] is included, all found files are sourced.
218 When it is not included only the first found file is
219 sourced.
220
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100221 When [where] is omitted only 'runtimepath' is used.
222 Other values:
223 START search under "start" in 'packpath'
224 OPT search under "opt" in 'packpath'
225 PACK search under "start" and "opt" in
226 'packpath'
227 ALL first use 'runtimepath', then search
228 under "start" and "opt" in 'packpath'
229
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 When {file} contains wildcards it is expanded to all
231 matching files. Example: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200232 :runtime! plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000234 starting up. This similar command: >
Bram Moolenaar589edb32019-09-20 14:38:13 +0200235 :runtime plugin/**/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236< would source the first file only.
237
238 When 'verbose' is one or higher, there is a message
239 when no file could be found.
240 When 'verbose' is two or higher, there is a message
241 about each searched file.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100243 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100244:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
245 and source any plugin files found. The directory must
246 match:
247 pack/*/opt/{name} ~
248 The directory is added to 'runtimepath' if it wasn't
249 there yet.
Bram Moolenaar26852122016-05-24 20:02:38 +0200250 If the directory pack/*/opt/{name}/after exists it is
251 added at the end of 'runtimepath'.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100252
Bram Moolenaarf0b03c42017-12-17 17:17:07 +0100253 If loading packages from "pack/*/start" was skipped,
254 then this directory is searched first:
255 pack/*/start/{name} ~
256
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100257 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200258 of the .vim file. All the files matching the pattern
259 pack/*/opt/{name}/plugin/**/*.vim ~
260 will be sourced. This allows for using subdirectories
261 below "plugin", just like with plugins in
262 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100263
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100264 If the filetype detection was not enabled yet (this
265 is usually done with a "syntax enable" or "filetype
266 on" command in your .vimrc file), this will also look
267 for "{name}/ftdetect/*.vim" files.
268
269 When the optional ! is added no plugin files or
270 ftdetect scripts are loaded, only the matching
271 directories are added to 'runtimepath'. This is
272 useful in your .vimrc. The plugins will then be
273 loaded during initialization, see |load-plugins|.
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200274 Note that for ftdetect scripts to be loaded
275 you will need to write `filetype plugin indent on`
276 AFTER all `packadd!` commands.
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100277
278 Also see |pack-add|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200279 {only available when compiled with |+eval|}
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100280
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100281 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200282:packl[oadall][!] Load all packages in the "start" directory under each
283 entry in 'packpath'.
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100284
Bram Moolenaar03413f42016-04-12 21:07:15 +0200285 First all the directories found are added to
286 'runtimepath', then the plugins found in the
287 directories are sourced. This allows for a plugin to
288 depend on something of another plugin, e.g. an
289 "autoload" directory. See |packload-two-steps| for
290 how this can be useful.
291
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100292 This is normally done automatically during startup,
293 after loading your .vimrc file. With this command it
294 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200295
Bram Moolenaar6c1e1572019-06-22 02:13:00 +0200296 Packages will be loaded only once. Using
297 `:packloadall` a second time will have no effect.
298 When the optional ! is added this command will load
299 packages even when done before.
300
301 Note that when using `:packloadall` in the |vimrc|
302 file, the 'runtimepath' option is updated, and later
303 all plugins in 'runtimepath' will be loaded, which
304 means they are loaded again. Plugins are expected to
305 handle that.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200306
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200307 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100308 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100309 See |packages|.
Bram Moolenaar6dc819b2018-07-03 16:42:19 +0200310 {only available when compiled with |+eval|}
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
313 Specify the character encoding used in the script.
314 The following lines will be converted from [encoding]
315 to the value of the 'encoding' option, if they are
316 different. Examples: >
317 scriptencoding iso-8859-5
318 scriptencoding cp932
319<
320 When [encoding] is empty, no conversion is done. This
321 can be used to restrict conversion to a sequence of
322 lines: >
323 scriptencoding euc-jp
324 ... lines to be converted ...
325 scriptencoding
326 ... not converted ...
327
328< When conversion isn't supported by the system, there
Bram Moolenaar6f1d9a02016-07-24 14:12:38 +0200329 is no error message and no conversion is done. When a
330 line can't be converted there is no error and the
331 original line is kept.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332
333 Don't use "ucs-2" or "ucs-4", scripts cannot be in
334 these encodings (they would contain NUL bytes).
335 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200336 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 to use ":scriptencoding utf-8" then.
338
Bram Moolenaar3df01732017-02-17 22:47:16 +0100339 If you set the 'encoding' option in your |.vimrc|,
340 `:scriptencoding` must be placed after that. E.g.: >
341 set encoding=utf-8
342 scriptencoding utf-8
343<
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200345:scriptv[ersion] {version} *:scriptv* *:scriptversion*
346 *E999* *E984*
Bram Moolenaar62e1bb42019-04-08 16:25:07 +0200347 Specify the version of Vim for the lines that follow
348 in the same file. Only applies at the toplevel of
349 sourced scripts, not inside functions.
Bram Moolenaar558ca4a2019-04-04 18:15:38 +0200350
351 If {version} is higher than what the current Vim
352 version supports E999 will be given. You either need
353 to rewrite the script to make it work with an older
354 Vim version, or update Vim to a newer version. See
355 |vimscript-version| for what changed between versions.
356
Bram Moolenaarb2049902021-01-24 12:53:53 +0100357:vim9[script] [noclear] *:vim9* *:vim9script*
Bram Moolenaar7e6a5152021-01-02 16:39:53 +0100358 Marks a script file as containing |Vim9-script|
359 commands. Also see |vim9-namespace|.
360 Must be the first command in the file.
361 For [noclear] see |vim9-reload|.
362 Without the |+eval| feature this changes the syntax
363 for some commands.
364
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100365 *:scr* *:scriptnames*
366:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 first sourced. The number is used for the script ID
368 |<SID>|.
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200369 {not available when compiled without the |+eval|
370 feature}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100372:scr[iptnames][!] {scriptId} *:script*
Bram Moolenaar9d87a372018-12-18 21:41:50 +0100373 Edit script {scriptId}. Although ":scriptnames name"
374 works, using ":script name" is recommended.
375 When the current buffer can't be |abandon|ed and the !
376 is not present, the command fails.
Bram Moolenaar07dc18f2018-11-30 22:48:32 +0100377
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 *:fini* *:finish* *E168*
379:fini[sh] Stop sourcing a script. Can only be used in a Vim
380 script file. This is a quick way to skip the rest of
381 the file. If it is used after a |:try| but before the
382 matching |:finally| (if present), the commands
383 following the ":finally" up to the matching |:endtry|
384 are executed first. This process applies to all
385 nested ":try"s in the script. The outermost ":endtry"
Bram Moolenaar25c9c682019-05-05 18:13:34 +0200386 then stops sourcing the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387
388All commands and command sequences can be repeated by putting them in a named
389register and then executing it. There are two ways to get the commands in the
390register:
391- Use the record command "q". You type the commands once, and while they are
392 being executed they are stored in a register. Easy, because you can see
393 what you are doing. If you make a mistake, "p"ut the register into the
394 file, edit the command sequence, and then delete it into the register
395 again. You can continue recording by appending to the register (use an
396 uppercase letter).
397- Delete or yank the command sequence into the register.
398
399Often used command sequences can be put under a function key with the ':map'
400command.
401
402An alternative is to put the commands in a file, and execute them with the
403':source!' command. Useful for long command sequences. Can be combined with
404the ':map' command to put complicated commands under a function key.
405
406The ':source' command reads Ex commands from a file line by line. You will
407have to type any needed keyboard input. The ':source!' command reads from a
408script file character by character, interpreting each character as if you
409typed it.
410
411Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
412you ':source' a file with the line "!ls" in it, you will have to type the
413<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
414the next characters from that file are read until a <CR> is found. You will
415not have to type <CR> yourself, unless ":!ls" was the last line in the file.
416
417It is possible to put ':source[!]' commands in the script file, so you can
418make a top-down hierarchy of script files. The ':source' command can be
419nested as deep as the number of files that can be opened at one time (about
42015). The ':source!' command can be nested up to 15 levels deep.
421
422You can use the "<sfile>" string (literally, this is not a special key) inside
423of the sourced file, in places where a file name is expected. It will be
424replaced by the file name of the sourced file. For example, if you have a
425"other.vimrc" file in the same directory as your ".vimrc" file, you can source
426it from your ".vimrc" file with this command: >
427 :source <sfile>:h/other.vimrc
428
429In script files terminal-dependent key codes are represented by
430terminal-independent two character codes. This means that they can be used
431in the same way on different kinds of terminals. The first character of a
432key code is 0x80 or 128, shown on the screen as "~@". The second one can be
433found in the list |key-notation|. Any of these codes can also be entered
434with CTRL-V followed by the three digit decimal code. This does NOT work for
435the <t_xx> termcap codes, these can only be used in mappings.
436
437 *:source_crnl* *W15*
Bram Moolenaar6f345a12019-12-17 21:27:18 +0100438Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s.
439These always work. If you are using a file with <NL> <EOL>s (for example, a
440file made on Unix), this will be recognized if 'fileformats' is not empty and
441the first line does not end in a <CR>. This fails if the first line has
442something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line
443ends in a <CR>, but following ones don't, you will get an error message,
444because the <CR> from the first lines will be lost.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445
Bram Moolenaar520470a2005-06-16 21:59:56 +0000446Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447These always work. If you are using a file with <NL> <EOL>s (for example, a
448file made on Unix), this will be recognized if 'fileformats' is not empty and
449the first line does not end in a <CR>. Be careful not to use a file with <NL>
450linebreaks which has a <CR> in first line.
451
452On other systems, Vim expects ":source"ed files to end in a <NL>. These
453always work. If you are using a file with <CR><NL> <EOL>s (for example, a
Bram Moolenaar5666fcd2019-12-26 14:35:26 +0100454file made on MS-Windows), all lines will have a trailing <CR>. This may cause
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455problems for some commands (e.g., mappings). There is no automatic <EOL>
456detection, because it's common to start with a line that defines a mapping
457that ends in a <CR>, which will confuse the automaton.
458
459 *line-continuation*
460Long lines in a ":source"d Ex command script file can be split by inserting
461a line continuation symbol "\" (backslash) at the start of the next line.
462There can be white space before the backslash, which is ignored.
463
464Example: the lines >
465 :set comments=sr:/*,mb:*,el:*/,
466 \://,
467 \b:#,
468 \:%,
469 \n:>,
470 \fb:-
471are interpreted as if they were given in one line:
472 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
473
474All leading whitespace characters in the line before a backslash are ignored.
475Note however that trailing whitespace in the line before it cannot be
476inserted freely; it depends on the position where a command is split up
477whether additional whitespace is allowed or not.
478
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100479When a space is required it's best to put it right after the backslash. A
480space at the end of a line is hard to see and may be accidentally deleted. >
481 :syn match Comment
482 \ "very long regexp"
483 \ keepend
484
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485There is a problem with the ":append" and ":insert" commands: >
486 :1append
487 \asdf
488 .
489The backslash is seen as a line-continuation symbol, thus this results in the
490command: >
491 :1appendasdf
492 .
493To avoid this, add the 'C' flag to the 'cpoptions' option: >
494 :set cpo+=C
495 :1append
496 \asdf
497 .
498 :set cpo-=C
499
500Note that when the commands are inside a function, you need to add the 'C'
501flag when defining the function, it is not relevant when executing it. >
502 :set cpo+=C
503 :function Foo()
504 :1append
505 \asdf
506 .
507 :endfunction
508 :set cpo-=C
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200509<
510 *line-continuation-comment*
Bram Moolenaar95bafa22018-10-02 13:26:25 +0200511To add a comment in between the lines start with '"\ '. Notice the space
512after the backslash. Example: >
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200513 let array = [
514 "\ first entry comment
515 \ 'first',
516 "\ second entry comment
517 \ 'second',
518 \ ]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519
520Rationale:
521 Most programs work with a trailing backslash to indicate line
522 continuation. Using this in Vim would cause incompatibility with Vi.
523 For example for this Vi mapping: >
524 :map xx asdf\
525< Therefore the unusual leading backslash is used.
526
Bram Moolenaar67f8ab82018-09-11 22:37:29 +0200527 Starting a comment in a continuation line results in all following
528 continuation lines to be part of the comment. Since it was like this
529 for a long time, when making it possible to add a comment halfway a
530 sequence of continuation lines, it was not possible to use \", since
531 that was a valid continuation line. Using '"\ ' comes closest, even
532 though it may look a bit weird. Requiring the space after the
533 backslash is to make it very unlikely this is a normal comment line.
534
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01005365. Using Vim packages *packages*
537
538A Vim package is a directory that contains one or more plugins. The
539advantages over normal plugins:
540- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100541 Thus the files are not mixed with files of other plugins. That makes it
542 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100543- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100544 easy to update.
545- A package can contain multiple plugins that depend on each other.
546- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100547 ones that are only loaded when needed with `:packadd`.
548
549
550Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100551
552Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100553package from a zip archive "/tmp/foopack.zip":
554 % mkdir -p ~/.vim/pack/foo
555 % cd ~/.vim/pack/foo
556 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100557
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100558The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100559
560You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100561 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100562 pack/foo/start/foobar/plugin/foo.vim
563 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100564 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100565
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100566When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200567'packpath' for plugins under the "pack/*/start" directory. First all those
568directories are added to 'runtimepath'. Then all the plugins are loaded.
569See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100570
Bram Moolenaar664f3cf2019-12-07 16:03:51 +0100571In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100572"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100573
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100574If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
575find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100576
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100577Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100578
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100579Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100580ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100581is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100582
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100583Loading packages automatically will not happen if loading plugins is disabled,
584see |load-plugins|.
585
586To load packages earlier, so that 'runtimepath' gets updated: >
587 :packloadall
588This also works when loading plugins is disabled. The automatic loading will
589only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100590
Bram Moolenaar26852122016-05-24 20:02:38 +0200591If the package has an "after" directory, that directory is added to the end of
592'runtimepath', so that anything there will be loaded later.
593
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100594
595Using a single plugin and loading it automatically ~
596
597If you don't have a package but a single plugin, you need to create the extra
598directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100599 % mkdir -p ~/.vim/pack/foo/start/foobar
600 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100601 % unzip /tmp/someplugin.zip
602
603You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100604 pack/foo/start/foobar/plugin/foo.vim
605 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100606
607From here it works like above.
608
609
610Optional plugins ~
611 *pack-add*
612To load an optional plugin from a pack use the `:packadd` command: >
613 :packadd foodebug
614This searches for "pack/*/opt/foodebug" in 'packpath' and will find
615~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
616
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100617This could be done if some conditions are met. For example, depending on
618whether Vim supports a feature or a dependency is missing.
619
620You can also load an optional plugin at startup, by putting this command in
621your |.vimrc|: >
622 :packadd! foodebug
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200623The extra "!" is so that the plugin isn't loaded if Vim was started with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100624|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100625
626It is perfectly normal for a package to only have files in the "opt"
627directory. You then need to load each plugin when you want to use it.
628
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100629
630Where to put what ~
631
632Since color schemes, loaded with `:colorscheme`, are found below
633"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
634you put them below "pack/*/opt", for example
635".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
636
637Filetype plugins should go under "pack/*/start", so that they are always
638found. Unless you have more than one plugin for a file type and want to
639select which one to load with `:packadd`. E.g. depending on the compiler
640version: >
641 if foo_compiler_version > 34
642 packadd foo_new
643 else
644 packadd foo_old
645 endif
646
647The "after" directory is most likely not useful in a package. It's not
648disallowed though.
649
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100650==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01006516. Creating Vim packages *package-create*
652
653This assumes you write one or more plugins that you distribute as a package.
654
655If you have two unrelated plugins you would use two packages, so that Vim
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200656users can choose what they include or not. Or you can decide to use one
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200657package with optional plugins, and tell the user to add the preferred ones with
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100658`:packadd`.
659
660Decide how you want to distribute the package. You can create an archive or
661you could use a repository. An archive can be used by more users, but is a
662bit harder to update to a new version. A repository can usually be kept
663up-to-date easily, but it requires a program like "git" to be available.
664You can do both, github can automatically create an archive for a release.
665
666Your directory layout would be like this:
667 start/foobar/plugin/foo.vim " always loaded, defines commands
668 start/foobar/plugin/bar.vim " always loaded, defines commands
669 start/foobar/autoload/foo.vim " loaded when foo command used
670 start/foobar/doc/foo.txt " help for foo.vim
671 start/foobar/doc/tags " help tags
672 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
673 opt/fooextra/autoload/extra.vim " loaded when extra command used
674 opt/fooextra/doc/extra.txt " help for extra.vim
675 opt/fooextra/doc/tags " help tags
676
677This allows for the user to do: >
678 mkdir ~/.vim/pack/myfoobar
679 cd ~/.vim/pack/myfoobar
680 git clone https://github.com/you/foobar.git
681
682Here "myfoobar" is a name that the user can choose, the only condition is that
683it differs from other packages.
684
685In your documentation you explain what the plugins do, and tell the user how
686to load the optional plugin: >
687 :packadd! fooextra
688
689You could add this packadd command in one of your plugins, to be executed when
690the optional plugin is needed.
691
692Run the `:helptags` command to generate the doc/tags file. Including this
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200693generated file in the package means that the user can drop the package in the
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100694pack directory and the help command works right away. Don't forget to re-run
695the command after changing the plugin help: >
696 :helptags path/start/foobar/doc
697 :helptags path/opt/fooextra/doc
698
Bram Moolenaar03413f42016-04-12 21:07:15 +0200699
700Dependencies between plugins ~
701 *packload-two-steps*
Bram Moolenaarc95a3022016-06-12 23:01:46 +0200702Suppose you have two plugins that depend on the same functionality. You can
Bram Moolenaar03413f42016-04-12 21:07:15 +0200703put the common functionality in an autoload directory, so that it will be
704found automatically. Your package would have these files:
705
706 pack/foo/start/one/plugin/one.vim >
707 call foolib#getit()
708< pack/foo/start/two/plugin/two.vim >
709 call foolib#getit()
710< pack/foo/start/lib/autoload/foolib.vim >
711 func foolib#getit()
712
713This works, because loading packages will first add all found directories to
714'runtimepath' before sourcing the plugins.
715
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100716==============================================================================
7177. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718
719Besides the obvious messages that you can add to your scripts to find out what
720they are doing, Vim offers a debug mode. This allows you to step through a
721sourced file or user function and set breakpoints.
722
723NOTE: The debugging mode is far from perfect. Debugging will have side
724effects on how Vim works. You cannot use it to debug everything. For
725example, the display is messed up by the debugging messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726
727An alternative to debug mode is setting the 'verbose' option. With a bigger
728number it will give more verbose messages about what Vim is doing.
729
730
731STARTING DEBUG MODE *debug-mode*
732
733To enter debugging mode use one of these methods:
7341. Start Vim with the |-D| argument: >
735 vim -D file.txt
736< Debugging will start as soon as the first vimrc file is sourced. This is
737 useful to find out what is happening when Vim is starting up. A side
738 effect is that Vim will switch the terminal mode before initialisations
739 have finished, with unpredictable results.
740 For a GUI-only version (Windows, Macintosh) the debugging will start as
741 soon as the GUI window has been opened. To make this happen early, add a
742 ":gui" command in the vimrc file.
743 *:debug*
7442. Run a command with ":debug" prepended. Debugging will only be done while
745 this command executes. Useful for debugging a specific script or user
746 function. And for scripts and functions used by autocommands. Example: >
747 :debug edit test.txt.gz
748
7493. Set a breakpoint in a sourced file or user function. You could do this in
750 the command line: >
751 vim -c "breakadd file */explorer.vim" .
752< This will run Vim and stop in the first line of the "explorer.vim" script.
753 Breakpoints can also be set while in debugging mode.
754
755In debugging mode every executed command is displayed before it is executed.
756Comment lines, empty lines and lines that are not executed are skipped. When
757a line contains two commands, separated by "|", each command will be displayed
758separately.
759
760
761DEBUG MODE
762
763Once in debugging mode, the usual Ex commands can be used. For example, to
764inspect the value of a variable: >
765 echo idx
766When inside a user function, this will print the value of the local variable
767"idx". Prepend "g:" to get the value of a global variable: >
768 echo g:idx
769All commands are executed in the context of the current function or script.
770You can also set options, for example setting or resetting 'verbose' will show
771what happens, but you might want to set it just before executing the lines you
772are interested in: >
773 :set verbose=20
774
775Commands that require updating the screen should be avoided, because their
776effect won't be noticed until after leaving debug mode. For example: >
777 :help
778won't be very helpful.
779
780There is a separate command-line history for debug mode.
781
782The line number for a function line is relative to the start of the function.
783If you have trouble figuring out where you are, edit the file that defines
784the function in another Vim, search for the start of the function and do
785"99j". Replace "99" with the line number.
786
787Additionally, these commands can be used:
788 *>cont*
789 cont Continue execution until the next breakpoint is hit.
790 *>quit*
791 quit Abort execution. This is like using CTRL-C, some
792 things might still be executed, doesn't abort
793 everything. Still stops at the next breakpoint.
794 *>next*
795 next Execute the command and come back to debug mode when
796 it's finished. This steps over user function calls
797 and sourced files.
798 *>step*
799 step Execute the command and come back to debug mode for
800 the next command. This steps into called user
801 functions and sourced files.
802 *>interrupt*
803 interrupt This is like using CTRL-C, but unlike ">quit" comes
804 back to debug mode for the next command that is
805 executed. Useful for testing |:finally| and |:catch|
806 on interrupt exceptions.
807 *>finish*
808 finish Finish the current script or user function and come
809 back to debug mode for the command after the one that
810 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100811 *>bt*
812 *>backtrace*
813 *>where*
814 backtrace Show the call stacktrace for current debugging session.
815 bt
816 where
817 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100818 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100819 relative. E.g., ":frame +3" goes three frames up.
820 *>up*
821 up Goes one level up from call stacktrace.
822 *>down*
823 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824
825About the additional commands in debug mode:
826- There is no command-line completion for them, you get the completion for the
827 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100828- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100829 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830- Hitting <CR> will repeat the previous one. When doing another command, this
831 is reset (because it's not clear what you want to repeat).
832- When you want to use the Ex command with the same name, prepend a colon:
833 ":cont", ":next", ":finish" (or shorter).
834
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100835The backtrace shows the hierarchy of function calls, e.g.:
836 >bt ~
837 3 function One[3] ~
838 2 Two[3] ~
839 ->1 Three[3] ~
840 0 Four ~
841 line 1: let four = 4 ~
842
843The "->" points to the current frame. Use "up", "down" and "frame N" to
844select another frame.
845
846In the current frame you can evaluate the local function variables. There is
847no way to see the command at the current line yet.
848
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849
850DEFINING BREAKPOINTS
851 *:breaka* *:breakadd*
852:breaka[dd] func [lnum] {name}
853 Set a breakpoint in a function. Example: >
854 :breakadd func Explore
855< Doesn't check for a valid function name, thus the breakpoint
856 can be set before the function is defined.
857
858:breaka[dd] file [lnum] {name}
859 Set a breakpoint in a sourced file. Example: >
860 :breakadd file 43 .vimrc
861
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000862:breaka[dd] here
863 Set a breakpoint in the current line of the current file.
864 Like doing: >
865 :breakadd file <cursor-line> <current-file>
866< Note that this only works for commands that are executed when
867 sourcing the file, not for a function defined in that file.
868
Bram Moolenaarc6f9f732018-02-11 19:06:26 +0100869:breaka[dd] expr {expression}
870 Sets a breakpoint, that will break whenever the {expression}
871 evaluates to a different value. Example: >
872 :breakadd expr g:lnum
873
874< Will break, whenever the global variable lnum changes.
875 Note if you watch a |script-variable| this will break
876 when switching scripts, since the script variable is only
877 valid in the script where it has been defined and if that
878 script is called from several other scripts, this will stop
879 whenever that particular variable will become visible or
880 unaccessible again.
881
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882The [lnum] is the line number of the breakpoint. Vim will stop at or after
883this line. When omitted line 1 is used.
884
Bram Moolenaar05159a02005-02-26 23:04:13 +0000885 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886{name} is a pattern that is matched with the file or function name. The
887pattern is like what is used for autocommands. There must be a full match (as
888if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
889of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
890to ignore case |/\c|. Don't include the () for the function name!
891
Bram Moolenaar843ee412004-06-30 16:16:41 +0000892The match for sourced scripts is done against the full file name. If no path
893is specified the current directory is used. Examples: >
894 breakadd file explorer.vim
895matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000897matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000899matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
901The match for functions is done against the name as it's shown in the output
Bram Moolenaarb2049902021-01-24 12:53:53 +0100902of ":function". However, for local functions the script-specific prefix such
903as "<SNR>99_" is ignored to make it easier to match script-local functions
904without knowing the ID of the script.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000906Note that functions are first loaded and later executed. When they are loaded
907the "file" breakpoints are checked, when they are executed the "func"
908breakpoints.
909
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910
911DELETING BREAKPOINTS
912 *:breakd* *:breakdel* *E161*
913:breakd[el] {nr}
914 Delete breakpoint {nr}. Use |:breaklist| to see the number of
915 each breakpoint.
916
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000917:breakd[el] *
918 Delete all breakpoints.
919
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920:breakd[el] func [lnum] {name}
921 Delete a breakpoint in a function.
922
923:breakd[el] file [lnum] {name}
924 Delete a breakpoint in a sourced file.
925
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000926:breakd[el] here
927 Delete a breakpoint at the current line of the current file.
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929When [lnum] is omitted, the first breakpoint in the function or file is
930deleted.
931The {name} must be exactly the same as what was typed for the ":breakadd"
932command. "explorer", "*explorer.vim" and "*explorer*" are different.
933
934
935LISTING BREAKPOINTS
936 *:breakl* *:breaklist*
937:breakl[ist]
938 List all breakpoints.
939
940
941OBSCURE
942
943 *:debugg* *:debuggreedy*
944:debugg[reedy]
945 Read debug mode commands from the normal input stream, instead
946 of getting them directly from the user. Only useful for test
947 scripts. Example: >
948 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
949
950:0debugg[reedy]
951 Undo ":debuggreedy": get debug mode commands directly from the
952 user, don't use typeahead for debug commands.
953
Bram Moolenaar05159a02005-02-26 23:04:13 +0000954==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01009558. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000956
Bram Moolenaar996343d2010-07-04 22:20:21 +0200957Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000958functions and/or scripts. The |+profile| feature is required for this.
Bram Moolenaarb2049902021-01-24 12:53:53 +0100959It is included when Vim was compiled with "huge" features.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000960
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000961You can also use the |reltime()| function to measure time. This only requires
Bram Moolenaarb2049902021-01-24 12:53:53 +0100962the |+reltime| feature, which is present in more builds.
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000963
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200964For profiling syntax highlighting see |:syntime|.
965
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100966For example, to profile the one_script.vim script file: >
967 :profile start /tmp/one_script_profile
968 :profile file one_script.vim
969 :source one_script.vim
970 :exit
971
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200972
Bram Moolenaar05159a02005-02-26 23:04:13 +0000973:prof[ile] start {fname} *:prof* *:profile* *E750*
974 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +0200975 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000976 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000977 The variable |v:profiling| is set to one.
978
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000979:prof[ile] pause
980 Don't profile until the following ":profile continue". Can be
981 used when doing something that should not be counted (e.g., an
982 external command). Does not nest.
983
984:prof[ile] continue
985 Continue profiling after ":profile pause".
986
Bram Moolenaar05159a02005-02-26 23:04:13 +0000987:prof[ile] func {pattern}
988 Profile function that matches the pattern {pattern}.
989 See |:debug-name| for how {pattern} is used.
990
991:prof[ile][!] file {pattern}
992 Profile script file that matches the pattern {pattern}.
993 See |:debug-name| for how {pattern} is used.
994 This only profiles the script itself, not the functions
995 defined in it.
996 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100997 will also be profiled.
998 Note that profiling only starts when the script is loaded
999 after this command. A :profile command in the script itself
1000 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001001
1002
Bram Moolenaard9fba312005-06-26 22:34:35 +00001003:profd[el] ... *:profd* *:profdel*
1004 Stop profiling for the arguments specified. See |:breakdel|
1005 for the arguments.
1006
1007
Bram Moolenaar05159a02005-02-26 23:04:13 +00001008You must always start with a ":profile start fname" command. The resulting
Bram Moolenaarb2049902021-01-24 12:53:53 +01001009file is written when Vim exits. For example, to profile one specific
1010function: >
1011 profile start /tmp/vimprofile
1012 profile func MyFunc
1013
1014Here is an example of the output, with line
Bram Moolenaar05159a02005-02-26 23:04:13 +00001015numbers prepended for the explanation:
1016
1017 1 FUNCTION Test2() ~
1018 2 Called 1 time ~
1019 3 Total time: 0.155251 ~
1020 4 Self time: 0.002006 ~
1021 5 ~
1022 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001023 7 9 0.000096 for i in range(8) ~
1024 8 8 0.153655 0.000410 call Test3() ~
1025 9 8 0.000070 endfor ~
1026 10 " Ask a question ~
1027 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +00001028
1029The header (lines 1-4) gives the time for the whole function. The "Total"
1030time is the time passed while the function was executing. The "Self" time is
1031the "Total" time reduced by time spent in:
1032- other user defined functions
1033- sourced scripts
1034- executed autocommands
1035- external (shell) commands
1036
1037Lines 7-11 show the time spent in each executed line. Lines that are not
1038executed do not count. Thus a comment line is never counted.
1039
1040The Count column shows how many times a line was executed. Note that the
1041"for" command in line 7 is executed one more time as the following lines.
1042That is because the line is also executed to detect the end of the loop.
1043
1044The time Vim spends waiting for user input isn't counted at all. Thus how
1045long you take to respond to the input() prompt is irrelevant.
1046
1047Profiling should give a good indication of where time is spent, but keep in
1048mind there are various things that may clobber the results:
1049
1050- The accuracy of the time measured depends on the gettimeofday() system
1051 function. It may only be as accurate as 1/100 second, even though the times
1052 are displayed in micro seconds.
1053
1054- Real elapsed time is measured, if other processes are busy they may cause
1055 delays at unpredictable moments. You may want to run the profiling several
1056 times and use the lowest results.
1057
1058- If you have several commands in one line you only get one time. Split the
1059 line to see the time for the individual commands.
1060
1061- The time of the lines added up is mostly less than the time of the whole
1062 function. There is some overhead in between.
1063
1064- Functions that are deleted before Vim exits will not produce profiling
1065 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00001066 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +00001067 : delfunc MyFunc
1068 :endif
1069<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001070- Profiling may give weird results on multi-processor systems, when sleep
1071 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +00001072
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001073- The "self" time is wrong when a function is used recursively.
1074
1075
Bram Moolenaar91f84f62018-07-29 15:07:52 +02001076 vim:tw=78:ts=8:noet:ft=help:norl: