blob: c8624a2666db6a74fa97f06e3c1d6879a8873b86 [file] [log] [blame]
Bram Moolenaare18c0b32016-03-20 21:08:34 +01001*repeat.txt* For Vim version 7.4. Last change: 2016 Mar 15
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
111. Single repeats |single-repeat|
122. Multiple repeats |multi-repeat|
133. Complex repeats |complex-repeat|
144. Using Vim scripts |using-scripts|
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100155. Using Vim packages |packages|
166. Debugging scripts |debug-scripts|
177. Profiling |profiling|
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19==============================================================================
201. Single repeats *single-repeat*
21
22 *.*
23. Repeat last change, with count replaced with [count].
24 Also repeat a yank command, when the 'y' flag is
Bram Moolenaard4755bb2004-09-02 19:12:26 +000025 included in 'cpoptions'. Does not repeat a
26 command-line command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000027
28Simple changes can be repeated with the "." command. Without a count, the
29count of the last change is used. If you enter a count, it will replace the
Bram Moolenaar92dff182014-02-11 19:15:50 +010030last one. |v:count| and |v:count1| will be set.
31
32If the last change included a specification of a numbered register, the
33register number will be incremented. See |redo-register| for an example how
34to use this.
35
36Note that when repeating a command that used a Visual selection, the same SIZE
37of area is used, see |visual-repeat|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39 *@:*
40@: Repeat last command-line [count] times.
41 {not available when compiled without the
42 |+cmdline_hist| feature}
43
44
45==============================================================================
462. Multiple repeats *multi-repeat*
47
48 *:g* *:global* *E147* *E148*
49:[range]g[lobal]/{pattern}/[cmd]
50 Execute the Ex command [cmd] (default ":p") on the
51 lines within [range] where {pattern} matches.
52
53:[range]g[lobal]!/{pattern}/[cmd]
54 Execute the Ex command [cmd] (default ":p") on the
55 lines within [range] where {pattern} does NOT match.
56
57 *:v* *:vglobal*
58:[range]v[global]/{pattern}/[cmd]
59 Same as :g!.
60
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000061Instead of the '/' which surrounds the {pattern}, you can use any other
Bram Moolenaare2db6952013-07-24 19:53:36 +020062single byte character, but not an alphabetic character, '\', '"' or '|'.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000063This is useful if you want to include a '/' in the search pattern or
64replacement string.
65
66For the definition of a pattern, see |pattern|.
67
Bram Moolenaar32efaf62014-11-05 17:02:17 +010068NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for
69examples.
70
Bram Moolenaar071d4272004-06-13 20:20:40 +000071The global commands work by first scanning through the [range] lines and
72marking each line where a match occurs (for a multi-line pattern, only the
73start of the match matters).
74In a second scan the [cmd] is executed for each marked line with its line
75number prepended. For ":v" and ":g!" the command is executed for each not
76marked line. If a line is deleted its mark disappears.
77The default for [range] is the whole buffer (1,$). Use "CTRL-C" to interrupt
78the command. If an error message is given for a line, the command for that
79line is aborted and the global command continues with the next marked or
80unmarked line.
81
82To repeat a non-Ex command, you can use the ":normal" command: >
83 :g/pat/normal {commands}
84Make sure that {commands} ends with a whole command, otherwise Vim will wait
85for you to type the rest of the command for each match. The screen will not
86have been updated, so you don't know what you are doing. See |:normal|.
87
88The undo/redo command will undo/redo the whole global command at once.
89The previous context mark will only be set once (with "''" you go back to
90where the cursor was before the global command).
91
92The global command sets both the last used search pattern and the last used
93substitute pattern (this is vi compatible). This makes it easy to globally
94replace a string:
95 :g/pat/s//PAT/g
96This replaces all occurrences of "pat" with "PAT". The same can be done with:
97 :%s/pat/PAT/g
98Which is two characters shorter!
99
Bram Moolenaar864207d2008-06-24 22:14:38 +0000100When using "global" in Ex mode, a special case is using ":visual" as a
101command. This will move to a matching line, go to Normal mode to let you
102execute commands there until you use |Q| to return to Ex mode. This will be
103repeated for each matching line. While doing this you cannot use ":global".
104To abort this type CTRL-C twice.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000105
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106==============================================================================
1073. Complex repeats *complex-repeat*
108
109 *q* *recording*
110q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
111 (uppercase to append). The 'q' command is disabled
112 while executing a register, and it doesn't work inside
Bram Moolenaara0ed84a2015-11-19 17:56:13 +0100113 a mapping and |:normal|.
114
115 Note: If the register being used for recording is also
116 used for |y| and |p| the result is most likely not
117 what is expected, because the put will paste the
118 recorded macro and the yank will overwrite the
119 recorded macro. {Vi: no recording}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120
121q Stops recording. (Implementation note: The 'q' that
122 stops recording is not stored in the register, unless
123 it was the result of a mapping) {Vi: no recording}
124
125 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200126@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127 times. Note that register '%' (name of the current
128 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100129 used.
130 The register is executed like a mapping, that means
131 that the difference between 'wildchar' and 'wildcharm'
132 applies.
133 For "@=" you are prompted to enter an expression. The
134 result of the expression is then executed.
135 See also |@:|. {Vi: only named registers}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000137 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138@@ Repeat the previous @{0-9a-z":*} [count] times.
139
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200140:[addr]*{0-9a-z".=+} *:@* *:star*
141:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142 command. First set cursor at line [addr] (default is
143 current line). When the last line in the register does
144 not have a <CR> it will be added automatically when
145 the 'e' flag is present in 'cpoptions'.
146 Note that the ":*" command is only recognized when the
147 '*' flag is present in 'cpoptions'. This is NOT the
148 default when 'nocompatible' is used.
149 For ":@=" the last used expression is used. The
150 result of evaluating the expression is executed as an
151 Ex command.
152 Mappings are not recognized in these commands.
153 {Vi: only in some versions} Future: Will execute the
154 register for each line in the address range.
155
156 *:@:*
157:[addr]@: Repeat last command-line. First set cursor at line
158 [addr] (default is current line). {not in Vi}
159
160 *:@@*
161:[addr]@@ Repeat the previous :@{0-9a-z"}. First set cursor at
162 line [addr] (default is current line). {Vi: only in
163 some versions}
164
165==============================================================================
1664. Using Vim scripts *using-scripts*
167
168For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
169
170 *:so* *:source* *load-vim-script*
171:so[urce] {file} Read Ex commands from {file}. These are commands that
172 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000173 Triggers the |SourcePre| autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174
175:so[urce]! {file} Read Vim commands from {file}. These are commands
176 that are executed from Normal mode, like you type
177 them.
178 When used after |:global|, |:argdo|, |:windo|,
179 |:bufdo|, in a loop or when another command follows
180 the display won't be updated while executing the
181 commands.
182 {not in Vi}
183
184 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100185:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100187 by 'runtimepath' and/or 'packpath'. There is no error
188 for non-existing files.
189
190 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191 :runtime syntax/c.vim
192
193< There can be multiple {file} arguments, separated by
194 spaces. Each {file} is searched for in the first
195 directory from 'runtimepath', then in the second
196 directory, etc. Use a backslash to include a space
197 inside {file} (although it's better not to use spaces
198 in file names, it causes trouble).
199
200 When [!] is included, all found files are sourced.
201 When it is not included only the first found file is
202 sourced.
203
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100204 When [where] is omitted only 'runtimepath' is used.
205 Other values:
206 START search under "start" in 'packpath'
207 OPT search under "opt" in 'packpath'
208 PACK search under "start" and "opt" in
209 'packpath'
210 ALL first use 'runtimepath', then search
211 under "start" and "opt" in 'packpath'
212
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 When {file} contains wildcards it is expanded to all
214 matching files. Example: >
215 :runtime! plugin/*.vim
216< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000217 starting up. This similar command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218 :runtime plugin/*.vim
219< would source the first file only.
220
221 When 'verbose' is one or higher, there is a message
222 when no file could be found.
223 When 'verbose' is two or higher, there is a message
224 about each searched file.
225 {not in Vi}
226
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100227 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100228:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
229 and source any plugin files found. The directory must
230 match:
231 pack/*/opt/{name} ~
232 The directory is added to 'runtimepath' if it wasn't
233 there yet.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100234
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100235 Note that {name} is the directory name, not the name
236 of the .vim file. If the "{name}/plugin" directory
237 contains more than one file they are all sourced.
238
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100239 If the filetype detection was not enabled yet (this
240 is usually done with a "syntax enable" or "filetype
241 on" command in your .vimrc file), this will also look
242 for "{name}/ftdetect/*.vim" files.
243
244 When the optional ! is added no plugin files or
245 ftdetect scripts are loaded, only the matching
246 directories are added to 'runtimepath'. This is
247 useful in your .vimrc. The plugins will then be
248 loaded during initialization, see |load-plugins|.
249
250 Also see |pack-add|.
251
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100252 *:packl* *:packloadall*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100253:packloadall[!] Load all packages in the "start" directories under
254 'packpath'. The directories found are added to
255 'runtimepath'.
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100256 This is normally done automatically during startup,
257 after loading your .vimrc file. With this command it
258 can be done earlier.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100259 Packages will be loaded only once. After this command
260 it won't happen again. When the optional ! is added
261 this command will load packages even when done before.
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100262 An Error only causes sourcing the script where it
263 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100264 See |packages|.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100265
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
267 Specify the character encoding used in the script.
268 The following lines will be converted from [encoding]
269 to the value of the 'encoding' option, if they are
270 different. Examples: >
271 scriptencoding iso-8859-5
272 scriptencoding cp932
273<
274 When [encoding] is empty, no conversion is done. This
275 can be used to restrict conversion to a sequence of
276 lines: >
277 scriptencoding euc-jp
278 ... lines to be converted ...
279 scriptencoding
280 ... not converted ...
281
282< When conversion isn't supported by the system, there
283 is no error message and no conversion is done.
284
285 Don't use "ucs-2" or "ucs-4", scripts cannot be in
286 these encodings (they would contain NUL bytes).
287 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200288 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 to use ":scriptencoding utf-8" then.
290
291 When compiled without the |+multi_byte| feature this
292 command is ignored.
293 {not in Vi}
294
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100295 *:scr* *:scriptnames*
296:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 first sourced. The number is used for the script ID
298 |<SID>|.
299 {not in Vi} {not available when compiled without the
300 |+eval| feature}
301
302 *:fini* *:finish* *E168*
303:fini[sh] Stop sourcing a script. Can only be used in a Vim
304 script file. This is a quick way to skip the rest of
305 the file. If it is used after a |:try| but before the
306 matching |:finally| (if present), the commands
307 following the ":finally" up to the matching |:endtry|
308 are executed first. This process applies to all
309 nested ":try"s in the script. The outermost ":endtry"
310 then stops sourcing the script. {not in Vi}
311
312All commands and command sequences can be repeated by putting them in a named
313register and then executing it. There are two ways to get the commands in the
314register:
315- Use the record command "q". You type the commands once, and while they are
316 being executed they are stored in a register. Easy, because you can see
317 what you are doing. If you make a mistake, "p"ut the register into the
318 file, edit the command sequence, and then delete it into the register
319 again. You can continue recording by appending to the register (use an
320 uppercase letter).
321- Delete or yank the command sequence into the register.
322
323Often used command sequences can be put under a function key with the ':map'
324command.
325
326An alternative is to put the commands in a file, and execute them with the
327':source!' command. Useful for long command sequences. Can be combined with
328the ':map' command to put complicated commands under a function key.
329
330The ':source' command reads Ex commands from a file line by line. You will
331have to type any needed keyboard input. The ':source!' command reads from a
332script file character by character, interpreting each character as if you
333typed it.
334
335Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
336you ':source' a file with the line "!ls" in it, you will have to type the
337<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
338the next characters from that file are read until a <CR> is found. You will
339not have to type <CR> yourself, unless ":!ls" was the last line in the file.
340
341It is possible to put ':source[!]' commands in the script file, so you can
342make a top-down hierarchy of script files. The ':source' command can be
343nested as deep as the number of files that can be opened at one time (about
34415). The ':source!' command can be nested up to 15 levels deep.
345
346You can use the "<sfile>" string (literally, this is not a special key) inside
347of the sourced file, in places where a file name is expected. It will be
348replaced by the file name of the sourced file. For example, if you have a
349"other.vimrc" file in the same directory as your ".vimrc" file, you can source
350it from your ".vimrc" file with this command: >
351 :source <sfile>:h/other.vimrc
352
353In script files terminal-dependent key codes are represented by
354terminal-independent two character codes. This means that they can be used
355in the same way on different kinds of terminals. The first character of a
356key code is 0x80 or 128, shown on the screen as "~@". The second one can be
357found in the list |key-notation|. Any of these codes can also be entered
358with CTRL-V followed by the three digit decimal code. This does NOT work for
359the <t_xx> termcap codes, these can only be used in mappings.
360
361 *:source_crnl* *W15*
362MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have
363<CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s
364(for example, a file made on Unix), this will be recognized if 'fileformats'
365is not empty and the first line does not end in a <CR>. This fails if the
366first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If
367the first line ends in a <CR>, but following ones don't, you will get an error
368message, because the <CR> from the first lines will be lost.
369
Bram Moolenaar520470a2005-06-16 21:59:56 +0000370Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371These always work. If you are using a file with <NL> <EOL>s (for example, a
372file made on Unix), this will be recognized if 'fileformats' is not empty and
373the first line does not end in a <CR>. Be careful not to use a file with <NL>
374linebreaks which has a <CR> in first line.
375
376On other systems, Vim expects ":source"ed files to end in a <NL>. These
377always work. If you are using a file with <CR><NL> <EOL>s (for example, a
378file made on MS-DOS), all lines will have a trailing <CR>. This may cause
379problems for some commands (e.g., mappings). There is no automatic <EOL>
380detection, because it's common to start with a line that defines a mapping
381that ends in a <CR>, which will confuse the automaton.
382
383 *line-continuation*
384Long lines in a ":source"d Ex command script file can be split by inserting
385a line continuation symbol "\" (backslash) at the start of the next line.
386There can be white space before the backslash, which is ignored.
387
388Example: the lines >
389 :set comments=sr:/*,mb:*,el:*/,
390 \://,
391 \b:#,
392 \:%,
393 \n:>,
394 \fb:-
395are interpreted as if they were given in one line:
396 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
397
398All leading whitespace characters in the line before a backslash are ignored.
399Note however that trailing whitespace in the line before it cannot be
400inserted freely; it depends on the position where a command is split up
401whether additional whitespace is allowed or not.
402
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100403When a space is required it's best to put it right after the backslash. A
404space at the end of a line is hard to see and may be accidentally deleted. >
405 :syn match Comment
406 \ "very long regexp"
407 \ keepend
408
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409There is a problem with the ":append" and ":insert" commands: >
410 :1append
411 \asdf
412 .
413The backslash is seen as a line-continuation symbol, thus this results in the
414command: >
415 :1appendasdf
416 .
417To avoid this, add the 'C' flag to the 'cpoptions' option: >
418 :set cpo+=C
419 :1append
420 \asdf
421 .
422 :set cpo-=C
423
424Note that when the commands are inside a function, you need to add the 'C'
425flag when defining the function, it is not relevant when executing it. >
426 :set cpo+=C
427 :function Foo()
428 :1append
429 \asdf
430 .
431 :endfunction
432 :set cpo-=C
433
434Rationale:
435 Most programs work with a trailing backslash to indicate line
436 continuation. Using this in Vim would cause incompatibility with Vi.
437 For example for this Vi mapping: >
438 :map xx asdf\
439< Therefore the unusual leading backslash is used.
440
441==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01004425. Using Vim packages *packages*
443
444A Vim package is a directory that contains one or more plugins. The
445advantages over normal plugins:
446- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100447 Thus the files are not mixed with files of other plugins. That makes it
448 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100449- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100450 easy to update.
451- A package can contain multiple plugins that depend on each other.
452- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100453 ones that are only loaded when needed with `:packadd`.
454
455
456Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100457
458Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100459package from a zip archive "/tmp/foopack.zip":
460 % mkdir -p ~/.vim/pack/foo
461 % cd ~/.vim/pack/foo
462 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100463
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100464The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100465
466You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100467 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100468 pack/foo/start/foobar/plugin/foo.vim
469 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100470 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100471
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100472When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100473'packpath' for plugins under the "pack/*/start" directory and loads them. The
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100474directory is added to 'runtimepath'.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100475
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100476In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
477"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100478
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100479If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
480find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100481
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100482Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100483
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100484Note that the files under "pack/foo/opt" or not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100485ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100486is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100487
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100488Loading packages automatically will not happen if loading plugins is disabled,
489see |load-plugins|.
490
491To load packages earlier, so that 'runtimepath' gets updated: >
492 :packloadall
493This also works when loading plugins is disabled. The automatic loading will
494only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100495
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100496
497Using a single plugin and loading it automatically ~
498
499If you don't have a package but a single plugin, you need to create the extra
500directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100501 % mkdir -p ~/.vim/pack/foo/start/foobar
502 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100503 % unzip /tmp/someplugin.zip
504
505You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100506 pack/foo/start/foobar/plugin/foo.vim
507 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100508
509From here it works like above.
510
511
512Optional plugins ~
513 *pack-add*
514To load an optional plugin from a pack use the `:packadd` command: >
515 :packadd foodebug
516This searches for "pack/*/opt/foodebug" in 'packpath' and will find
517~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
518
519This could be done inside always.vim, if some conditions are met. Or you
520could add this command to your |.vimrc|.
521
522It is perfectly normal for a package to only have files in the "opt"
523directory. You then need to load each plugin when you want to use it.
524
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100525==============================================================================
5266. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527
528Besides the obvious messages that you can add to your scripts to find out what
529they are doing, Vim offers a debug mode. This allows you to step through a
530sourced file or user function and set breakpoints.
531
532NOTE: The debugging mode is far from perfect. Debugging will have side
533effects on how Vim works. You cannot use it to debug everything. For
534example, the display is messed up by the debugging messages.
535{Vi does not have a debug mode}
536
537An alternative to debug mode is setting the 'verbose' option. With a bigger
538number it will give more verbose messages about what Vim is doing.
539
540
541STARTING DEBUG MODE *debug-mode*
542
543To enter debugging mode use one of these methods:
5441. Start Vim with the |-D| argument: >
545 vim -D file.txt
546< Debugging will start as soon as the first vimrc file is sourced. This is
547 useful to find out what is happening when Vim is starting up. A side
548 effect is that Vim will switch the terminal mode before initialisations
549 have finished, with unpredictable results.
550 For a GUI-only version (Windows, Macintosh) the debugging will start as
551 soon as the GUI window has been opened. To make this happen early, add a
552 ":gui" command in the vimrc file.
553 *:debug*
5542. Run a command with ":debug" prepended. Debugging will only be done while
555 this command executes. Useful for debugging a specific script or user
556 function. And for scripts and functions used by autocommands. Example: >
557 :debug edit test.txt.gz
558
5593. Set a breakpoint in a sourced file or user function. You could do this in
560 the command line: >
561 vim -c "breakadd file */explorer.vim" .
562< This will run Vim and stop in the first line of the "explorer.vim" script.
563 Breakpoints can also be set while in debugging mode.
564
565In debugging mode every executed command is displayed before it is executed.
566Comment lines, empty lines and lines that are not executed are skipped. When
567a line contains two commands, separated by "|", each command will be displayed
568separately.
569
570
571DEBUG MODE
572
573Once in debugging mode, the usual Ex commands can be used. For example, to
574inspect the value of a variable: >
575 echo idx
576When inside a user function, this will print the value of the local variable
577"idx". Prepend "g:" to get the value of a global variable: >
578 echo g:idx
579All commands are executed in the context of the current function or script.
580You can also set options, for example setting or resetting 'verbose' will show
581what happens, but you might want to set it just before executing the lines you
582are interested in: >
583 :set verbose=20
584
585Commands that require updating the screen should be avoided, because their
586effect won't be noticed until after leaving debug mode. For example: >
587 :help
588won't be very helpful.
589
590There is a separate command-line history for debug mode.
591
592The line number for a function line is relative to the start of the function.
593If you have trouble figuring out where you are, edit the file that defines
594the function in another Vim, search for the start of the function and do
595"99j". Replace "99" with the line number.
596
597Additionally, these commands can be used:
598 *>cont*
599 cont Continue execution until the next breakpoint is hit.
600 *>quit*
601 quit Abort execution. This is like using CTRL-C, some
602 things might still be executed, doesn't abort
603 everything. Still stops at the next breakpoint.
604 *>next*
605 next Execute the command and come back to debug mode when
606 it's finished. This steps over user function calls
607 and sourced files.
608 *>step*
609 step Execute the command and come back to debug mode for
610 the next command. This steps into called user
611 functions and sourced files.
612 *>interrupt*
613 interrupt This is like using CTRL-C, but unlike ">quit" comes
614 back to debug mode for the next command that is
615 executed. Useful for testing |:finally| and |:catch|
616 on interrupt exceptions.
617 *>finish*
618 finish Finish the current script or user function and come
619 back to debug mode for the command after the one that
620 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100621 *>bt*
622 *>backtrace*
623 *>where*
624 backtrace Show the call stacktrace for current debugging session.
625 bt
626 where
627 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100628 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100629 relative. E.g., ":frame +3" goes three frames up.
630 *>up*
631 up Goes one level up from call stacktrace.
632 *>down*
633 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634
635About the additional commands in debug mode:
636- There is no command-line completion for them, you get the completion for the
637 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100638- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100639 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640- Hitting <CR> will repeat the previous one. When doing another command, this
641 is reset (because it's not clear what you want to repeat).
642- When you want to use the Ex command with the same name, prepend a colon:
643 ":cont", ":next", ":finish" (or shorter).
644
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100645The backtrace shows the hierarchy of function calls, e.g.:
646 >bt ~
647 3 function One[3] ~
648 2 Two[3] ~
649 ->1 Three[3] ~
650 0 Four ~
651 line 1: let four = 4 ~
652
653The "->" points to the current frame. Use "up", "down" and "frame N" to
654select another frame.
655
656In the current frame you can evaluate the local function variables. There is
657no way to see the command at the current line yet.
658
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659
660DEFINING BREAKPOINTS
661 *:breaka* *:breakadd*
662:breaka[dd] func [lnum] {name}
663 Set a breakpoint in a function. Example: >
664 :breakadd func Explore
665< Doesn't check for a valid function name, thus the breakpoint
666 can be set before the function is defined.
667
668:breaka[dd] file [lnum] {name}
669 Set a breakpoint in a sourced file. Example: >
670 :breakadd file 43 .vimrc
671
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000672:breaka[dd] here
673 Set a breakpoint in the current line of the current file.
674 Like doing: >
675 :breakadd file <cursor-line> <current-file>
676< Note that this only works for commands that are executed when
677 sourcing the file, not for a function defined in that file.
678
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679The [lnum] is the line number of the breakpoint. Vim will stop at or after
680this line. When omitted line 1 is used.
681
Bram Moolenaar05159a02005-02-26 23:04:13 +0000682 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683{name} is a pattern that is matched with the file or function name. The
684pattern is like what is used for autocommands. There must be a full match (as
685if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
686of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
687to ignore case |/\c|. Don't include the () for the function name!
688
Bram Moolenaar843ee412004-06-30 16:16:41 +0000689The match for sourced scripts is done against the full file name. If no path
690is specified the current directory is used. Examples: >
691 breakadd file explorer.vim
692matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000694matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000696matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697
698The match for functions is done against the name as it's shown in the output
699of ":function". For local functions this means that something like "<SNR>99_"
700is prepended.
701
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000702Note that functions are first loaded and later executed. When they are loaded
703the "file" breakpoints are checked, when they are executed the "func"
704breakpoints.
705
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706
707DELETING BREAKPOINTS
708 *:breakd* *:breakdel* *E161*
709:breakd[el] {nr}
710 Delete breakpoint {nr}. Use |:breaklist| to see the number of
711 each breakpoint.
712
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000713:breakd[el] *
714 Delete all breakpoints.
715
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716:breakd[el] func [lnum] {name}
717 Delete a breakpoint in a function.
718
719:breakd[el] file [lnum] {name}
720 Delete a breakpoint in a sourced file.
721
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000722:breakd[el] here
723 Delete a breakpoint at the current line of the current file.
724
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725When [lnum] is omitted, the first breakpoint in the function or file is
726deleted.
727The {name} must be exactly the same as what was typed for the ":breakadd"
728command. "explorer", "*explorer.vim" and "*explorer*" are different.
729
730
731LISTING BREAKPOINTS
732 *:breakl* *:breaklist*
733:breakl[ist]
734 List all breakpoints.
735
736
737OBSCURE
738
739 *:debugg* *:debuggreedy*
740:debugg[reedy]
741 Read debug mode commands from the normal input stream, instead
742 of getting them directly from the user. Only useful for test
743 scripts. Example: >
744 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
745
746:0debugg[reedy]
747 Undo ":debuggreedy": get debug mode commands directly from the
748 user, don't use typeahead for debug commands.
749
Bram Moolenaar05159a02005-02-26 23:04:13 +0000750==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01007517. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000752
Bram Moolenaar996343d2010-07-04 22:20:21 +0200753Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000754functions and/or scripts. The |+profile| feature is required for this.
755It is only included when Vim was compiled with "huge" features.
756{Vi does not have profiling}
757
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000758You can also use the |reltime()| function to measure time. This only requires
759the |+reltime| feature, which is present more often.
760
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200761For profiling syntax highlighting see |:syntime|.
762
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100763For example, to profile the one_script.vim script file: >
764 :profile start /tmp/one_script_profile
765 :profile file one_script.vim
766 :source one_script.vim
767 :exit
768
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200769
Bram Moolenaar05159a02005-02-26 23:04:13 +0000770:prof[ile] start {fname} *:prof* *:profile* *E750*
771 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +0200772 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000773 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000774 The variable |v:profiling| is set to one.
775
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000776:prof[ile] pause
777 Don't profile until the following ":profile continue". Can be
778 used when doing something that should not be counted (e.g., an
779 external command). Does not nest.
780
781:prof[ile] continue
782 Continue profiling after ":profile pause".
783
Bram Moolenaar05159a02005-02-26 23:04:13 +0000784:prof[ile] func {pattern}
785 Profile function that matches the pattern {pattern}.
786 See |:debug-name| for how {pattern} is used.
787
788:prof[ile][!] file {pattern}
789 Profile script file that matches the pattern {pattern}.
790 See |:debug-name| for how {pattern} is used.
791 This only profiles the script itself, not the functions
792 defined in it.
793 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100794 will also be profiled.
795 Note that profiling only starts when the script is loaded
796 after this command. A :profile command in the script itself
797 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000798
799
Bram Moolenaard9fba312005-06-26 22:34:35 +0000800:profd[el] ... *:profd* *:profdel*
801 Stop profiling for the arguments specified. See |:breakdel|
802 for the arguments.
803
804
Bram Moolenaar05159a02005-02-26 23:04:13 +0000805You must always start with a ":profile start fname" command. The resulting
806file is written when Vim exits. Here is an example of the output, with line
807numbers prepended for the explanation:
808
809 1 FUNCTION Test2() ~
810 2 Called 1 time ~
811 3 Total time: 0.155251 ~
812 4 Self time: 0.002006 ~
813 5 ~
814 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000815 7 9 0.000096 for i in range(8) ~
816 8 8 0.153655 0.000410 call Test3() ~
817 9 8 0.000070 endfor ~
818 10 " Ask a question ~
819 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +0000820
821The header (lines 1-4) gives the time for the whole function. The "Total"
822time is the time passed while the function was executing. The "Self" time is
823the "Total" time reduced by time spent in:
824- other user defined functions
825- sourced scripts
826- executed autocommands
827- external (shell) commands
828
829Lines 7-11 show the time spent in each executed line. Lines that are not
830executed do not count. Thus a comment line is never counted.
831
832The Count column shows how many times a line was executed. Note that the
833"for" command in line 7 is executed one more time as the following lines.
834That is because the line is also executed to detect the end of the loop.
835
836The time Vim spends waiting for user input isn't counted at all. Thus how
837long you take to respond to the input() prompt is irrelevant.
838
839Profiling should give a good indication of where time is spent, but keep in
840mind there are various things that may clobber the results:
841
842- The accuracy of the time measured depends on the gettimeofday() system
843 function. It may only be as accurate as 1/100 second, even though the times
844 are displayed in micro seconds.
845
846- Real elapsed time is measured, if other processes are busy they may cause
847 delays at unpredictable moments. You may want to run the profiling several
848 times and use the lowest results.
849
850- If you have several commands in one line you only get one time. Split the
851 line to see the time for the individual commands.
852
853- The time of the lines added up is mostly less than the time of the whole
854 function. There is some overhead in between.
855
856- Functions that are deleted before Vim exits will not produce profiling
857 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000858 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +0000859 : delfunc MyFunc
860 :endif
861<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000862- Profiling may give weird results on multi-processor systems, when sleep
863 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000864
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000865- The "self" time is wrong when a function is used recursively.
866
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 vim:tw=78:ts=8:ft=help:norl: