blob: 92ab58566d41f3aba5bd96366e73f50e7c6dd727 [file] [log] [blame]
Bram Moolenaar03413f42016-04-12 21:07:15 +02001*repeat.txt* For Vim version 7.4. Last change: 2016 Apr 05
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Repeating commands, Vim scripts and debugging *repeating*
8
9Chapter 26 of the user manual introduces repeating |usr_26.txt|.
10
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100111. Single repeats |single-repeat|
122. Multiple repeats |multi-repeat|
133. Complex repeats |complex-repeat|
144. Using Vim scripts |using-scripts|
155. Using Vim packages |packages|
166. Creating Vim packages |package-create|
177. Debugging scripts |debug-scripts|
188. Profiling |profiling|
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20==============================================================================
211. Single repeats *single-repeat*
22
23 *.*
24. Repeat last change, with count replaced with [count].
25 Also repeat a yank command, when the 'y' flag is
Bram Moolenaard4755bb2004-09-02 19:12:26 +000026 included in 'cpoptions'. Does not repeat a
27 command-line command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
29Simple changes can be repeated with the "." command. Without a count, the
30count of the last change is used. If you enter a count, it will replace the
Bram Moolenaar92dff182014-02-11 19:15:50 +010031last one. |v:count| and |v:count1| will be set.
32
33If the last change included a specification of a numbered register, the
34register number will be incremented. See |redo-register| for an example how
35to use this.
36
37Note that when repeating a command that used a Visual selection, the same SIZE
38of area is used, see |visual-repeat|.
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
40 *@:*
41@: Repeat last command-line [count] times.
42 {not available when compiled without the
43 |+cmdline_hist| feature}
44
45
46==============================================================================
472. Multiple repeats *multi-repeat*
48
49 *:g* *:global* *E147* *E148*
50:[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.
82
83To repeat a non-Ex command, you can use the ":normal" command: >
84 :g/pat/normal {commands}
85Make sure that {commands} ends with a whole command, otherwise Vim will wait
86for you to type the rest of the command for each match. The screen will not
87have been updated, so you don't know what you are doing. See |:normal|.
88
89The undo/redo command will undo/redo the whole global command at once.
90The previous context mark will only be set once (with "''" you go back to
91where the cursor was before the global command).
92
93The global command sets both the last used search pattern and the last used
94substitute pattern (this is vi compatible). This makes it easy to globally
95replace a string:
96 :g/pat/s//PAT/g
97This replaces all occurrences of "pat" with "PAT". The same can be done with:
98 :%s/pat/PAT/g
99Which is two characters shorter!
100
Bram Moolenaar864207d2008-06-24 22:14:38 +0000101When using "global" in Ex mode, a special case is using ":visual" as a
102command. This will move to a matching line, go to Normal mode to let you
103execute commands there until you use |Q| to return to Ex mode. This will be
104repeated for each matching line. While doing this you cannot use ":global".
105To abort this type CTRL-C twice.
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000106
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107==============================================================================
1083. Complex repeats *complex-repeat*
109
110 *q* *recording*
111q{0-9a-zA-Z"} Record typed characters into register {0-9a-zA-Z"}
112 (uppercase to append). The 'q' command is disabled
113 while executing a register, and it doesn't work inside
Bram Moolenaara0ed84a2015-11-19 17:56:13 +0100114 a mapping and |:normal|.
115
116 Note: If the register being used for recording is also
117 used for |y| and |p| the result is most likely not
118 what is expected, because the put will paste the
119 recorded macro and the yank will overwrite the
120 recorded macro. {Vi: no recording}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121
122q Stops recording. (Implementation note: The 'q' that
123 stops recording is not stored in the register, unless
124 it was the result of a mapping) {Vi: no recording}
125
126 *@*
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200127@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128 times. Note that register '%' (name of the current
129 file) and '#' (name of the alternate file) cannot be
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100130 used.
131 The register is executed like a mapping, that means
132 that the difference between 'wildchar' and 'wildcharm'
133 applies.
134 For "@=" you are prompted to enter an expression. The
135 result of the expression is then executed.
136 See also |@:|. {Vi: only named registers}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137
Bram Moolenaar26a60b42005-02-22 08:49:11 +0000138 *@@* *E748*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139@@ Repeat the previous @{0-9a-z":*} [count] times.
140
Bram Moolenaar61d35bd2012-03-28 20:51:51 +0200141:[addr]*{0-9a-z".=+} *:@* *:star*
142:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143 command. First set cursor at line [addr] (default is
144 current line). When the last line in the register does
145 not have a <CR> it will be added automatically when
146 the 'e' flag is present in 'cpoptions'.
147 Note that the ":*" command is only recognized when the
148 '*' flag is present in 'cpoptions'. This is NOT the
149 default when 'nocompatible' is used.
150 For ":@=" the last used expression is used. The
151 result of evaluating the expression is executed as an
152 Ex command.
153 Mappings are not recognized in these commands.
154 {Vi: only in some versions} Future: Will execute the
155 register for each line in the address range.
156
157 *:@:*
158:[addr]@: Repeat last command-line. First set cursor at line
159 [addr] (default is current line). {not in Vi}
160
161 *:@@*
162:[addr]@@ Repeat the previous :@{0-9a-z"}. First set cursor at
163 line [addr] (default is current line). {Vi: only in
164 some versions}
165
166==============================================================================
1674. Using Vim scripts *using-scripts*
168
169For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
170
171 *:so* *:source* *load-vim-script*
172:so[urce] {file} Read Ex commands from {file}. These are commands that
173 start with a ":".
Bram Moolenaar1f35bf92006-03-07 22:38:47 +0000174 Triggers the |SourcePre| autocommand.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175
176:so[urce]! {file} Read Vim commands from {file}. These are commands
177 that are executed from Normal mode, like you type
178 them.
179 When used after |:global|, |:argdo|, |:windo|,
180 |:bufdo|, in a loop or when another command follows
181 the display won't be updated while executing the
182 commands.
183 {not in Vi}
184
185 *:ru* *:runtime*
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100186:ru[ntime][!] [where] {file} ..
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187 Read Ex commands from {file} in each directory given
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100188 by 'runtimepath' and/or 'packpath'. There is no error
189 for non-existing files.
190
191 Example: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192 :runtime syntax/c.vim
193
194< There can be multiple {file} arguments, separated by
195 spaces. Each {file} is searched for in the first
196 directory from 'runtimepath', then in the second
197 directory, etc. Use a backslash to include a space
198 inside {file} (although it's better not to use spaces
199 in file names, it causes trouble).
200
201 When [!] is included, all found files are sourced.
202 When it is not included only the first found file is
203 sourced.
204
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100205 When [where] is omitted only 'runtimepath' is used.
206 Other values:
207 START search under "start" in 'packpath'
208 OPT search under "opt" in 'packpath'
209 PACK search under "start" and "opt" in
210 'packpath'
211 ALL first use 'runtimepath', then search
212 under "start" and "opt" in 'packpath'
213
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214 When {file} contains wildcards it is expanded to all
215 matching files. Example: >
216 :runtime! plugin/*.vim
217< This is what Vim uses to load the plugin files when
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000218 starting up. This similar command: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219 :runtime plugin/*.vim
220< would source the first file only.
221
222 When 'verbose' is one or higher, there is a message
223 when no file could be found.
224 When 'verbose' is two or higher, there is a message
225 about each searched file.
226 {not in Vi}
227
Bram Moolenaarbe82c252016-03-06 14:44:08 +0100228 *:pa* *:packadd* *E919*
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100229:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath'
230 and source any plugin files found. The directory must
231 match:
232 pack/*/opt/{name} ~
233 The directory is added to 'runtimepath' if it wasn't
234 there yet.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100235
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100236 Note that {name} is the directory name, not the name
Bram Moolenaar03413f42016-04-12 21:07:15 +0200237 of the .vim file. All the files matching the pattern
238 pack/*/opt/{name}/plugin/**/*.vim ~
239 will be sourced. This allows for using subdirectories
240 below "plugin", just like with plugins in
241 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100242
Bram Moolenaar328da0d2016-03-04 22:22:32 +0100243 If the filetype detection was not enabled yet (this
244 is usually done with a "syntax enable" or "filetype
245 on" command in your .vimrc file), this will also look
246 for "{name}/ftdetect/*.vim" files.
247
248 When the optional ! is added no plugin files or
249 ftdetect scripts are loaded, only the matching
250 directories are added to 'runtimepath'. This is
251 useful in your .vimrc. The plugins will then be
252 loaded during initialization, see |load-plugins|.
253
254 Also see |pack-add|.
255
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100256 *:packl* *:packloadall*
Bram Moolenaar03413f42016-04-12 21:07:15 +0200257:packl[oadall][!] Load all packages in the "start" directory under each
258 entry in 'packpath'.
259
260 First all the directories found are added to
261 'runtimepath', then the plugins found in the
262 directories are sourced. This allows for a plugin to
263 depend on something of another plugin, e.g. an
264 "autoload" directory. See |packload-two-steps| for
265 how this can be useful.
266
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100267 This is normally done automatically during startup,
268 after loading your .vimrc file. With this command it
269 can be done earlier.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200270
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100271 Packages will be loaded only once. After this command
272 it won't happen again. When the optional ! is added
273 this command will load packages even when done before.
Bram Moolenaar03413f42016-04-12 21:07:15 +0200274
Bram Moolenaar7db8f6f2016-03-29 23:12:46 +0200275 An error only causes sourcing the script where it
Bram Moolenaare18c0b32016-03-20 21:08:34 +0100276 happens to be aborted, further plugins will be loaded.
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100277 See |packages|.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100278
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*
280 Specify the character encoding used in the script.
281 The following lines will be converted from [encoding]
282 to the value of the 'encoding' option, if they are
283 different. Examples: >
284 scriptencoding iso-8859-5
285 scriptencoding cp932
286<
287 When [encoding] is empty, no conversion is done. This
288 can be used to restrict conversion to a sequence of
289 lines: >
290 scriptencoding euc-jp
291 ... lines to be converted ...
292 scriptencoding
293 ... not converted ...
294
295< When conversion isn't supported by the system, there
296 is no error message and no conversion is done.
297
298 Don't use "ucs-2" or "ucs-4", scripts cannot be in
299 these encodings (they would contain NUL bytes).
300 When a sourced script starts with a BOM (Byte Order
Bram Moolenaar06b5d512010-05-22 15:37:44 +0200301 Mark) in utf-8 format Vim will recognize it, no need
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302 to use ":scriptencoding utf-8" then.
303
304 When compiled without the |+multi_byte| feature this
305 command is ignored.
306 {not in Vi}
307
Bram Moolenaar8feef4f2015-01-07 16:57:10 +0100308 *:scr* *:scriptnames*
309:scr[iptnames] List all sourced script names, in the order they were
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 first sourced. The number is used for the script ID
311 |<SID>|.
312 {not in Vi} {not available when compiled without the
313 |+eval| feature}
314
315 *:fini* *:finish* *E168*
316:fini[sh] Stop sourcing a script. Can only be used in a Vim
317 script file. This is a quick way to skip the rest of
318 the file. If it is used after a |:try| but before the
319 matching |:finally| (if present), the commands
320 following the ":finally" up to the matching |:endtry|
321 are executed first. This process applies to all
322 nested ":try"s in the script. The outermost ":endtry"
323 then stops sourcing the script. {not in Vi}
324
325All commands and command sequences can be repeated by putting them in a named
326register and then executing it. There are two ways to get the commands in the
327register:
328- Use the record command "q". You type the commands once, and while they are
329 being executed they are stored in a register. Easy, because you can see
330 what you are doing. If you make a mistake, "p"ut the register into the
331 file, edit the command sequence, and then delete it into the register
332 again. You can continue recording by appending to the register (use an
333 uppercase letter).
334- Delete or yank the command sequence into the register.
335
336Often used command sequences can be put under a function key with the ':map'
337command.
338
339An alternative is to put the commands in a file, and execute them with the
340':source!' command. Useful for long command sequences. Can be combined with
341the ':map' command to put complicated commands under a function key.
342
343The ':source' command reads Ex commands from a file line by line. You will
344have to type any needed keyboard input. The ':source!' command reads from a
345script file character by character, interpreting each character as if you
346typed it.
347
348Example: When you give the ":!ls" command you get the |hit-enter| prompt. If
349you ':source' a file with the line "!ls" in it, you will have to type the
350<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it,
351the next characters from that file are read until a <CR> is found. You will
352not have to type <CR> yourself, unless ":!ls" was the last line in the file.
353
354It is possible to put ':source[!]' commands in the script file, so you can
355make a top-down hierarchy of script files. The ':source' command can be
356nested as deep as the number of files that can be opened at one time (about
35715). The ':source!' command can be nested up to 15 levels deep.
358
359You can use the "<sfile>" string (literally, this is not a special key) inside
360of the sourced file, in places where a file name is expected. It will be
361replaced by the file name of the sourced file. For example, if you have a
362"other.vimrc" file in the same directory as your ".vimrc" file, you can source
363it from your ".vimrc" file with this command: >
364 :source <sfile>:h/other.vimrc
365
366In script files terminal-dependent key codes are represented by
367terminal-independent two character codes. This means that they can be used
368in the same way on different kinds of terminals. The first character of a
369key code is 0x80 or 128, shown on the screen as "~@". The second one can be
370found in the list |key-notation|. Any of these codes can also be entered
371with CTRL-V followed by the three digit decimal code. This does NOT work for
372the <t_xx> termcap codes, these can only be used in mappings.
373
374 *:source_crnl* *W15*
375MS-DOS, Win32 and OS/2: Files that are read with ":source" normally have
376<CR><NL> <EOL>s. These always work. If you are using a file with <NL> <EOL>s
377(for example, a file made on Unix), this will be recognized if 'fileformats'
378is not empty and the first line does not end in a <CR>. This fails if the
379first line has something like ":map <F1> :help^M", where "^M" is a <CR>. If
380the first line ends in a <CR>, but following ones don't, you will get an error
381message, because the <CR> from the first lines will be lost.
382
Bram Moolenaar520470a2005-06-16 21:59:56 +0000383Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384These always work. If you are using a file with <NL> <EOL>s (for example, a
385file made on Unix), this will be recognized if 'fileformats' is not empty and
386the first line does not end in a <CR>. Be careful not to use a file with <NL>
387linebreaks which has a <CR> in first line.
388
389On other systems, Vim expects ":source"ed files to end in a <NL>. These
390always work. If you are using a file with <CR><NL> <EOL>s (for example, a
391file made on MS-DOS), all lines will have a trailing <CR>. This may cause
392problems for some commands (e.g., mappings). There is no automatic <EOL>
393detection, because it's common to start with a line that defines a mapping
394that ends in a <CR>, which will confuse the automaton.
395
396 *line-continuation*
397Long lines in a ":source"d Ex command script file can be split by inserting
398a line continuation symbol "\" (backslash) at the start of the next line.
399There can be white space before the backslash, which is ignored.
400
401Example: the lines >
402 :set comments=sr:/*,mb:*,el:*/,
403 \://,
404 \b:#,
405 \:%,
406 \n:>,
407 \fb:-
408are interpreted as if they were given in one line:
409 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:-
410
411All leading whitespace characters in the line before a backslash are ignored.
412Note however that trailing whitespace in the line before it cannot be
413inserted freely; it depends on the position where a command is split up
414whether additional whitespace is allowed or not.
415
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100416When a space is required it's best to put it right after the backslash. A
417space at the end of a line is hard to see and may be accidentally deleted. >
418 :syn match Comment
419 \ "very long regexp"
420 \ keepend
421
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422There is a problem with the ":append" and ":insert" commands: >
423 :1append
424 \asdf
425 .
426The backslash is seen as a line-continuation symbol, thus this results in the
427command: >
428 :1appendasdf
429 .
430To avoid this, add the 'C' flag to the 'cpoptions' option: >
431 :set cpo+=C
432 :1append
433 \asdf
434 .
435 :set cpo-=C
436
437Note that when the commands are inside a function, you need to add the 'C'
438flag when defining the function, it is not relevant when executing it. >
439 :set cpo+=C
440 :function Foo()
441 :1append
442 \asdf
443 .
444 :endfunction
445 :set cpo-=C
446
447Rationale:
448 Most programs work with a trailing backslash to indicate line
449 continuation. Using this in Vim would cause incompatibility with Vi.
450 For example for this Vi mapping: >
451 :map xx asdf\
452< Therefore the unusual leading backslash is used.
453
454==============================================================================
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +01004555. Using Vim packages *packages*
456
457A Vim package is a directory that contains one or more plugins. The
458advantages over normal plugins:
459- A package can be downloaded as an archive and unpacked in its own directory.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100460 Thus the files are not mixed with files of other plugins. That makes it
461 easy to update and remove.
Bram Moolenaar91715872016-03-03 17:13:03 +0100462- A package can be a git, mercurial, etc. repository. That makes it really
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100463 easy to update.
464- A package can contain multiple plugins that depend on each other.
465- A package can contain plugins that are automatically loaded on startup and
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100466 ones that are only loaded when needed with `:packadd`.
467
468
469Using a package and loading automatically ~
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100470
471Let's assume your Vim files are in the "~/.vim" directory and you want to add a
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100472package from a zip archive "/tmp/foopack.zip":
473 % mkdir -p ~/.vim/pack/foo
474 % cd ~/.vim/pack/foo
475 % unzip /tmp/foopack.zip
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100476
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100477The directory name "foo" is arbitrary, you can pick anything you like.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100478
479You would now have these files under ~/.vim:
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100480 pack/foo/README.txt
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100481 pack/foo/start/foobar/plugin/foo.vim
482 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100483 pack/foo/opt/foodebug/plugin/debugger.vim
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100484
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100485When Vim starts up, after processing your .vimrc, it scans all directories in
Bram Moolenaar03413f42016-04-12 21:07:15 +0200486'packpath' for plugins under the "pack/*/start" directory. First all those
487directories are added to 'runtimepath'. Then all the plugins are loaded.
488See |packload-two-steps| for how these two steps can be useful.
Bram Moolenaarf3654822016-03-04 22:12:23 +0100489
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100490In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds
491"~/.vim/pack/foo/start/foobar" to 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100492
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100493If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will
494find the syntax/some.vim file, because its directory is in 'runtimepath'.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100495
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100496Vim will also load ftdetect files, if there are any.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100497
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100498Note that the files under "pack/foo/opt" are not loaded automatically, only the
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100499ones under "pack/foo/start". See |pack-add| below for how the "opt" directory
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100500is used.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100501
Bram Moolenaar8dcf2592016-03-12 22:47:14 +0100502Loading packages automatically will not happen if loading plugins is disabled,
503see |load-plugins|.
504
505To load packages earlier, so that 'runtimepath' gets updated: >
506 :packloadall
507This also works when loading plugins is disabled. The automatic loading will
508only happen once.
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100509
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100510
511Using a single plugin and loading it automatically ~
512
513If you don't have a package but a single plugin, you need to create the extra
514directory level:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100515 % mkdir -p ~/.vim/pack/foo/start/foobar
516 % cd ~/.vim/pack/foo/start/foobar
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100517 % unzip /tmp/someplugin.zip
518
519You would now have these files:
Bram Moolenaaraf1a0e32016-03-09 22:19:26 +0100520 pack/foo/start/foobar/plugin/foo.vim
521 pack/foo/start/foobar/syntax/some.vim
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100522
523From here it works like above.
524
525
526Optional plugins ~
527 *pack-add*
528To load an optional plugin from a pack use the `:packadd` command: >
529 :packadd foodebug
530This searches for "pack/*/opt/foodebug" in 'packpath' and will find
531~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it.
532
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100533This could be done if some conditions are met. For example, depending on
534whether Vim supports a feature or a dependency is missing.
535
536You can also load an optional plugin at startup, by putting this command in
537your |.vimrc|: >
538 :packadd! foodebug
539The extra "!" is so that the plugin isn't loaded with Vim was started with
540|--noplugin|.
Bram Moolenaar5f148ec2016-03-07 22:59:26 +0100541
542It is perfectly normal for a package to only have files in the "opt"
543directory. You then need to load each plugin when you want to use it.
544
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100545
546Where to put what ~
547
548Since color schemes, loaded with `:colorscheme`, are found below
549"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend
550you put them below "pack/*/opt", for example
551".vim/pack/mycolors/opt/dark/colors/very_dark.vim".
552
553Filetype plugins should go under "pack/*/start", so that they are always
554found. Unless you have more than one plugin for a file type and want to
555select which one to load with `:packadd`. E.g. depending on the compiler
556version: >
557 if foo_compiler_version > 34
558 packadd foo_new
559 else
560 packadd foo_old
561 endif
562
563The "after" directory is most likely not useful in a package. It's not
564disallowed though.
565
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100566==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01005676. Creating Vim packages *package-create*
568
569This assumes you write one or more plugins that you distribute as a package.
570
571If you have two unrelated plugins you would use two packages, so that Vim
572users can chose what they include or not. Or you can decide to use one
573package with optional plugins, and tell the user to add the ones he wants with
574`:packadd`.
575
576Decide how you want to distribute the package. You can create an archive or
577you could use a repository. An archive can be used by more users, but is a
578bit harder to update to a new version. A repository can usually be kept
579up-to-date easily, but it requires a program like "git" to be available.
580You can do both, github can automatically create an archive for a release.
581
582Your directory layout would be like this:
583 start/foobar/plugin/foo.vim " always loaded, defines commands
584 start/foobar/plugin/bar.vim " always loaded, defines commands
585 start/foobar/autoload/foo.vim " loaded when foo command used
586 start/foobar/doc/foo.txt " help for foo.vim
587 start/foobar/doc/tags " help tags
588 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
589 opt/fooextra/autoload/extra.vim " loaded when extra command used
590 opt/fooextra/doc/extra.txt " help for extra.vim
591 opt/fooextra/doc/tags " help tags
592
593This allows for the user to do: >
594 mkdir ~/.vim/pack/myfoobar
595 cd ~/.vim/pack/myfoobar
596 git clone https://github.com/you/foobar.git
597
598Here "myfoobar" is a name that the user can choose, the only condition is that
599it differs from other packages.
600
601In your documentation you explain what the plugins do, and tell the user how
602to load the optional plugin: >
603 :packadd! fooextra
604
605You could add this packadd command in one of your plugins, to be executed when
606the optional plugin is needed.
607
608Run the `:helptags` command to generate the doc/tags file. Including this
609generated file in the package means that the user can drop the package in his
610pack directory and the help command works right away. Don't forget to re-run
611the command after changing the plugin help: >
612 :helptags path/start/foobar/doc
613 :helptags path/opt/fooextra/doc
614
Bram Moolenaar03413f42016-04-12 21:07:15 +0200615
616Dependencies between plugins ~
617 *packload-two-steps*
618Suppose you have a two plugins that depend on the same functionality. You can
619put the common functionality in an autoload directory, so that it will be
620found automatically. Your package would have these files:
621
622 pack/foo/start/one/plugin/one.vim >
623 call foolib#getit()
624< pack/foo/start/two/plugin/two.vim >
625 call foolib#getit()
626< pack/foo/start/lib/autoload/foolib.vim >
627 func foolib#getit()
628
629This works, because loading packages will first add all found directories to
630'runtimepath' before sourcing the plugins.
631
Bram Moolenaar4f3f6682016-03-26 23:01:59 +0100632==============================================================================
6337. Debugging scripts *debug-scripts*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634
635Besides the obvious messages that you can add to your scripts to find out what
636they are doing, Vim offers a debug mode. This allows you to step through a
637sourced file or user function and set breakpoints.
638
639NOTE: The debugging mode is far from perfect. Debugging will have side
640effects on how Vim works. You cannot use it to debug everything. For
641example, the display is messed up by the debugging messages.
642{Vi does not have a debug mode}
643
644An alternative to debug mode is setting the 'verbose' option. With a bigger
645number it will give more verbose messages about what Vim is doing.
646
647
648STARTING DEBUG MODE *debug-mode*
649
650To enter debugging mode use one of these methods:
6511. Start Vim with the |-D| argument: >
652 vim -D file.txt
653< Debugging will start as soon as the first vimrc file is sourced. This is
654 useful to find out what is happening when Vim is starting up. A side
655 effect is that Vim will switch the terminal mode before initialisations
656 have finished, with unpredictable results.
657 For a GUI-only version (Windows, Macintosh) the debugging will start as
658 soon as the GUI window has been opened. To make this happen early, add a
659 ":gui" command in the vimrc file.
660 *:debug*
6612. Run a command with ":debug" prepended. Debugging will only be done while
662 this command executes. Useful for debugging a specific script or user
663 function. And for scripts and functions used by autocommands. Example: >
664 :debug edit test.txt.gz
665
6663. Set a breakpoint in a sourced file or user function. You could do this in
667 the command line: >
668 vim -c "breakadd file */explorer.vim" .
669< This will run Vim and stop in the first line of the "explorer.vim" script.
670 Breakpoints can also be set while in debugging mode.
671
672In debugging mode every executed command is displayed before it is executed.
673Comment lines, empty lines and lines that are not executed are skipped. When
674a line contains two commands, separated by "|", each command will be displayed
675separately.
676
677
678DEBUG MODE
679
680Once in debugging mode, the usual Ex commands can be used. For example, to
681inspect the value of a variable: >
682 echo idx
683When inside a user function, this will print the value of the local variable
684"idx". Prepend "g:" to get the value of a global variable: >
685 echo g:idx
686All commands are executed in the context of the current function or script.
687You can also set options, for example setting or resetting 'verbose' will show
688what happens, but you might want to set it just before executing the lines you
689are interested in: >
690 :set verbose=20
691
692Commands that require updating the screen should be avoided, because their
693effect won't be noticed until after leaving debug mode. For example: >
694 :help
695won't be very helpful.
696
697There is a separate command-line history for debug mode.
698
699The line number for a function line is relative to the start of the function.
700If you have trouble figuring out where you are, edit the file that defines
701the function in another Vim, search for the start of the function and do
702"99j". Replace "99" with the line number.
703
704Additionally, these commands can be used:
705 *>cont*
706 cont Continue execution until the next breakpoint is hit.
707 *>quit*
708 quit Abort execution. This is like using CTRL-C, some
709 things might still be executed, doesn't abort
710 everything. Still stops at the next breakpoint.
711 *>next*
712 next Execute the command and come back to debug mode when
713 it's finished. This steps over user function calls
714 and sourced files.
715 *>step*
716 step Execute the command and come back to debug mode for
717 the next command. This steps into called user
718 functions and sourced files.
719 *>interrupt*
720 interrupt This is like using CTRL-C, but unlike ">quit" comes
721 back to debug mode for the next command that is
722 executed. Useful for testing |:finally| and |:catch|
723 on interrupt exceptions.
724 *>finish*
725 finish Finish the current script or user function and come
726 back to debug mode for the command after the one that
727 sourced or called it.
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100728 *>bt*
729 *>backtrace*
730 *>where*
731 backtrace Show the call stacktrace for current debugging session.
732 bt
733 where
734 *>frame*
Bram Moolenaar38a55632016-02-15 22:07:32 +0100735 frame N Goes to N backtrace level. + and - signs make movement
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100736 relative. E.g., ":frame +3" goes three frames up.
737 *>up*
738 up Goes one level up from call stacktrace.
739 *>down*
740 down Goes one level down from call stacktrace.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
742About the additional commands in debug mode:
743- There is no command-line completion for them, you get the completion for the
744 normal Ex commands only.
Bram Moolenaardae8d212016-02-27 22:40:16 +0100745- You can shorten them, up to a single character, unless more than one command
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100746 starts with the same letter. "f" stands for "finish", use "fr" for "frame".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747- Hitting <CR> will repeat the previous one. When doing another command, this
748 is reset (because it's not clear what you want to repeat).
749- When you want to use the Ex command with the same name, prepend a colon:
750 ":cont", ":next", ":finish" (or shorter).
751
Bram Moolenaarf1f60f82016-01-16 15:40:53 +0100752The backtrace shows the hierarchy of function calls, e.g.:
753 >bt ~
754 3 function One[3] ~
755 2 Two[3] ~
756 ->1 Three[3] ~
757 0 Four ~
758 line 1: let four = 4 ~
759
760The "->" points to the current frame. Use "up", "down" and "frame N" to
761select another frame.
762
763In the current frame you can evaluate the local function variables. There is
764no way to see the command at the current line yet.
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766
767DEFINING BREAKPOINTS
768 *:breaka* *:breakadd*
769:breaka[dd] func [lnum] {name}
770 Set a breakpoint in a function. Example: >
771 :breakadd func Explore
772< Doesn't check for a valid function name, thus the breakpoint
773 can be set before the function is defined.
774
775:breaka[dd] file [lnum] {name}
776 Set a breakpoint in a sourced file. Example: >
777 :breakadd file 43 .vimrc
778
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000779:breaka[dd] here
780 Set a breakpoint in the current line of the current file.
781 Like doing: >
782 :breakadd file <cursor-line> <current-file>
783< Note that this only works for commands that are executed when
784 sourcing the file, not for a function defined in that file.
785
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786The [lnum] is the line number of the breakpoint. Vim will stop at or after
787this line. When omitted line 1 is used.
788
Bram Moolenaar05159a02005-02-26 23:04:13 +0000789 *:debug-name*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{name} is a pattern that is matched with the file or function name. The
791pattern is like what is used for autocommands. There must be a full match (as
792if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
793of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
794to ignore case |/\c|. Don't include the () for the function name!
795
Bram Moolenaar843ee412004-06-30 16:16:41 +0000796The match for sourced scripts is done against the full file name. If no path
797is specified the current directory is used. Examples: >
798 breakadd file explorer.vim
799matches "explorer.vim" in the current directory. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 breakadd file *explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000801matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 breakadd file */explorer.vim
Bram Moolenaar843ee412004-06-30 16:16:41 +0000803matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804
805The match for functions is done against the name as it's shown in the output
806of ":function". For local functions this means that something like "<SNR>99_"
807is prepended.
808
Bram Moolenaar2ce06f62005-01-31 19:19:04 +0000809Note that functions are first loaded and later executed. When they are loaded
810the "file" breakpoints are checked, when they are executed the "func"
811breakpoints.
812
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
814DELETING BREAKPOINTS
815 *:breakd* *:breakdel* *E161*
816:breakd[el] {nr}
817 Delete breakpoint {nr}. Use |:breaklist| to see the number of
818 each breakpoint.
819
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000820:breakd[el] *
821 Delete all breakpoints.
822
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823:breakd[el] func [lnum] {name}
824 Delete a breakpoint in a function.
825
826:breakd[el] file [lnum] {name}
827 Delete a breakpoint in a sourced file.
828
Bram Moolenaarf4b8e572004-06-24 15:53:16 +0000829:breakd[el] here
830 Delete a breakpoint at the current line of the current file.
831
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832When [lnum] is omitted, the first breakpoint in the function or file is
833deleted.
834The {name} must be exactly the same as what was typed for the ":breakadd"
835command. "explorer", "*explorer.vim" and "*explorer*" are different.
836
837
838LISTING BREAKPOINTS
839 *:breakl* *:breaklist*
840:breakl[ist]
841 List all breakpoints.
842
843
844OBSCURE
845
846 *:debugg* *:debuggreedy*
847:debugg[reedy]
848 Read debug mode commands from the normal input stream, instead
849 of getting them directly from the user. Only useful for test
850 scripts. Example: >
851 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim
852
853:0debugg[reedy]
854 Undo ":debuggreedy": get debug mode commands directly from the
855 user, don't use typeahead for debug commands.
856
Bram Moolenaar05159a02005-02-26 23:04:13 +0000857==============================================================================
Bram Moolenaar4f3f6682016-03-26 23:01:59 +01008588. Profiling *profile* *profiling*
Bram Moolenaar05159a02005-02-26 23:04:13 +0000859
Bram Moolenaar996343d2010-07-04 22:20:21 +0200860Profiling means that Vim measures the time that is spent on executing
Bram Moolenaar05159a02005-02-26 23:04:13 +0000861functions and/or scripts. The |+profile| feature is required for this.
862It is only included when Vim was compiled with "huge" features.
863{Vi does not have profiling}
864
Bram Moolenaar433f7c82006-03-21 21:29:36 +0000865You can also use the |reltime()| function to measure time. This only requires
866the |+reltime| feature, which is present more often.
867
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200868For profiling syntax highlighting see |:syntime|.
869
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100870For example, to profile the one_script.vim script file: >
871 :profile start /tmp/one_script_profile
872 :profile file one_script.vim
873 :source one_script.vim
874 :exit
875
Bram Moolenaar16ea3672013-07-28 16:02:18 +0200876
Bram Moolenaar05159a02005-02-26 23:04:13 +0000877:prof[ile] start {fname} *:prof* *:profile* *E750*
878 Start profiling, write the output in {fname} upon exit.
Bram Moolenaar0a63ded2015-04-15 13:31:24 +0200879 "~/" and environment variables in {fname} will be expanded.
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000880 If {fname} already exists it will be silently overwritten.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000881 The variable |v:profiling| is set to one.
882
Bram Moolenaar9b2200a2006-03-20 21:55:45 +0000883:prof[ile] pause
884 Don't profile until the following ":profile continue". Can be
885 used when doing something that should not be counted (e.g., an
886 external command). Does not nest.
887
888:prof[ile] continue
889 Continue profiling after ":profile pause".
890
Bram Moolenaar05159a02005-02-26 23:04:13 +0000891:prof[ile] func {pattern}
892 Profile function that matches the pattern {pattern}.
893 See |:debug-name| for how {pattern} is used.
894
895:prof[ile][!] file {pattern}
896 Profile script file that matches the pattern {pattern}.
897 See |:debug-name| for how {pattern} is used.
898 This only profiles the script itself, not the functions
899 defined in it.
900 When the [!] is added then all functions defined in the script
Bram Moolenaar76f3b1a2014-03-27 22:30:07 +0100901 will also be profiled.
902 Note that profiling only starts when the script is loaded
903 after this command. A :profile command in the script itself
904 won't work.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000905
906
Bram Moolenaard9fba312005-06-26 22:34:35 +0000907:profd[el] ... *:profd* *:profdel*
908 Stop profiling for the arguments specified. See |:breakdel|
909 for the arguments.
910
911
Bram Moolenaar05159a02005-02-26 23:04:13 +0000912You must always start with a ":profile start fname" command. The resulting
913file is written when Vim exits. Here is an example of the output, with line
914numbers prepended for the explanation:
915
916 1 FUNCTION Test2() ~
917 2 Called 1 time ~
918 3 Total time: 0.155251 ~
919 4 Self time: 0.002006 ~
920 5 ~
921 6 count total (s) self (s) ~
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000922 7 9 0.000096 for i in range(8) ~
923 8 8 0.153655 0.000410 call Test3() ~
924 9 8 0.000070 endfor ~
925 10 " Ask a question ~
926 11 1 0.001341 echo input("give me an answer: ") ~
Bram Moolenaar05159a02005-02-26 23:04:13 +0000927
928The header (lines 1-4) gives the time for the whole function. The "Total"
929time is the time passed while the function was executing. The "Self" time is
930the "Total" time reduced by time spent in:
931- other user defined functions
932- sourced scripts
933- executed autocommands
934- external (shell) commands
935
936Lines 7-11 show the time spent in each executed line. Lines that are not
937executed do not count. Thus a comment line is never counted.
938
939The Count column shows how many times a line was executed. Note that the
940"for" command in line 7 is executed one more time as the following lines.
941That is because the line is also executed to detect the end of the loop.
942
943The time Vim spends waiting for user input isn't counted at all. Thus how
944long you take to respond to the input() prompt is irrelevant.
945
946Profiling should give a good indication of where time is spent, but keep in
947mind there are various things that may clobber the results:
948
949- The accuracy of the time measured depends on the gettimeofday() system
950 function. It may only be as accurate as 1/100 second, even though the times
951 are displayed in micro seconds.
952
953- Real elapsed time is measured, if other processes are busy they may cause
954 delays at unpredictable moments. You may want to run the profiling several
955 times and use the lowest results.
956
957- If you have several commands in one line you only get one time. Split the
958 line to see the time for the individual commands.
959
960- The time of the lines added up is mostly less than the time of the whole
961 function. There is some overhead in between.
962
963- Functions that are deleted before Vim exits will not produce profiling
964 information. You can check the |v:profiling| variable if needed: >
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000965 :if !v:profiling
Bram Moolenaar05159a02005-02-26 23:04:13 +0000966 : delfunc MyFunc
967 :endif
968<
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +0000969- Profiling may give weird results on multi-processor systems, when sleep
970 mode kicks in or the processor frequency is reduced to save power.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000971
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000972- The "self" time is wrong when a function is used recursively.
973
974
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 vim:tw=78:ts=8:ft=help:norl: