1*repeat.txt* For Vim version 8.2. Last change: 2020 Apr 26 2 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| 155. Using Vim packages |packages| 166. Creating Vim packages |package-create| 177. Debugging scripts |debug-scripts| 188. Profiling |profiling| 19 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 26 included in 'cpoptions'. Does not repeat a 27 command-line command. 28 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 31last 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|. 39 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* *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 62Instead of the '/' which surrounds the {pattern}, you can use any other 63single byte character, but not an alphabetic character, '\', '"' or '|'. 64This 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 69NOTE [cmd] may contain a range; see |collapse| and |edit-paragraph-join| for 70examples. 71 72The 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). 75In 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 77marked 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 *E147* 83When the command is used recursively, it only works on one line. Giving a 84range is then not allowed. This is useful to find all lines that match a 85pattern and do not match another pattern: > 86 :g/found/v/notfound/{cmd} 87This first finds all lines containing "found", but only executes {cmd} when 88there is no match for "notfound". 89 90To execute a non-Ex command, you can use the `:normal` command: > 91 :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 108When 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. 113 114============================================================================== 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 121 a mapping and |:normal|. 122 123 Note: If the register being used for recording is also 124 used for |y| and |p| the result is most likely not 125 what is expected, because the put will paste the 126 recorded macro and the yank will overwrite the 127 recorded macro. 128 129q Stops recording. (Implementation note: The 'q' that 130 stops recording is not stored in the register, unless 131 it was the result of a mapping) 132 133 *@* 134@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} [count] 135 times. Note that register '%' (name of the current 136 file) and '#' (name of the alternate file) cannot be 137 used. 138 The register is executed like a mapping, that means 139 that the difference between 'wildchar' and 'wildcharm' 140 applies. 141 For "@=" you are prompted to enter an expression. The 142 result of the expression is then executed. 143 See also |@:|. 144 145 *@@* *E748* 146@@ Repeat the previous @{0-9a-z":*} [count] times. 147 148:[addr]*{0-9a-z".=+} *:@* *:star* 149:[addr]@{0-9a-z".=*+} Execute the contents of register {0-9a-z".=*+} as an Ex 150 command. First set cursor at line [addr] (default is 151 current line). When the last line in the register does 152 not have a <CR> it will be added automatically when 153 the 'e' flag is present in 'cpoptions'. 154 Note that the ":*" command is only recognized when the 155 '*' flag is present in 'cpoptions'. This is NOT the 156 default when 'nocompatible' is used. 157 For ":@=" the last used expression is used. The 158 result of evaluating the expression is executed as an 159 Ex command. 160 Mappings are not recognized in these commands. 161 Future: Will execute the register for each line in the 162 address range. 163 164 *:@:* 165:[addr]@: Repeat last command-line. First set cursor at line 166 [addr] (default is current line). 167 168:[addr]@ *:@@* 169:[addr]@@ Repeat the previous :@{register}. First set cursor at 170 line [addr] (default is current line). 171 172============================================================================== 1734. Using Vim scripts *using-scripts* 174 175For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|. 176 177 *:so* *:source* *load-vim-script* 178:so[urce] {file} Read Ex commands from {file}. These are commands that 179 start with a ":". 180 Triggers the |SourcePre| autocommand. 181 *:source!* 182:so[urce]! {file} Read Vim commands from {file}. These are commands 183 that are executed from Normal mode, like you type 184 them. 185 When used after |:global|, |:argdo|, |:windo|, 186 |:bufdo|, in a loop or when another command follows 187 the display won't be updated while executing the 188 commands. 189 Cannot be used in the |sandbox|. 190 191 *:ru* *:runtime* 192:ru[ntime][!] [where] {file} .. 193 Read Ex commands from {file} in each directory given 194 by 'runtimepath' and/or 'packpath'. There is no error 195 for non-existing files. 196 197 Example: > 198 :runtime syntax/c.vim 199 200< There can be multiple {file} arguments, separated by 201 spaces. Each {file} is searched for in the first 202 directory from 'runtimepath', then in the second 203 directory, etc. Use a backslash to include a space 204 inside {file} (although it's better not to use spaces 205 in file names, it causes trouble). 206 207 When [!] is included, all found files are sourced. 208 When it is not included only the first found file is 209 sourced. 210 211 When [where] is omitted only 'runtimepath' is used. 212 Other values: 213 START search under "start" in 'packpath' 214 OPT search under "opt" in 'packpath' 215 PACK search under "start" and "opt" in 216 'packpath' 217 ALL first use 'runtimepath', then search 218 under "start" and "opt" in 'packpath' 219 220 When {file} contains wildcards it is expanded to all 221 matching files. Example: > 222 :runtime! plugin/**/*.vim 223< This is what Vim uses to load the plugin files when 224 starting up. This similar command: > 225 :runtime plugin/**/*.vim 226< would source the first file only. 227 228 When 'verbose' is one or higher, there is a message 229 when no file could be found. 230 When 'verbose' is two or higher, there is a message 231 about each searched file. 232 233 *:pa* *:packadd* *E919* 234:pa[ckadd][!] {name} Search for an optional plugin directory in 'packpath' 235 and source any plugin files found. The directory must 236 match: 237 pack/*/opt/{name} ~ 238 The directory is added to 'runtimepath' if it wasn't 239 there yet. 240 If the directory pack/*/opt/{name}/after exists it is 241 added at the end of 'runtimepath'. 242 243 If loading packages from "pack/*/start" was skipped, 244 then this directory is searched first: 245 pack/*/start/{name} ~ 246 247 Note that {name} is the directory name, not the name 248 of the .vim file. All the files matching the pattern 249 pack/*/opt/{name}/plugin/**/*.vim ~ 250 will be sourced. This allows for using subdirectories 251 below "plugin", just like with plugins in 252 'runtimepath'. 253 254 If the filetype detection was not enabled yet (this 255 is usually done with a "syntax enable" or "filetype 256 on" command in your .vimrc file), this will also look 257 for "{name}/ftdetect/*.vim" files. 258 259 When the optional ! is added no plugin files or 260 ftdetect scripts are loaded, only the matching 261 directories are added to 'runtimepath'. This is 262 useful in your .vimrc. The plugins will then be 263 loaded during initialization, see |load-plugins|. 264 265 Also see |pack-add|. 266 {only available when compiled with |+eval|} 267 268 *:packl* *:packloadall* 269:packl[oadall][!] Load all packages in the "start" directory under each 270 entry in 'packpath'. 271 272 First all the directories found are added to 273 'runtimepath', then the plugins found in the 274 directories are sourced. This allows for a plugin to 275 depend on something of another plugin, e.g. an 276 "autoload" directory. See |packload-two-steps| for 277 how this can be useful. 278 279 This is normally done automatically during startup, 280 after loading your .vimrc file. With this command it 281 can be done earlier. 282 283 Packages will be loaded only once. Using 284 `:packloadall` a second time will have no effect. 285 When the optional ! is added this command will load 286 packages even when done before. 287 288 Note that when using `:packloadall` in the |vimrc| 289 file, the 'runtimepath' option is updated, and later 290 all plugins in 'runtimepath' will be loaded, which 291 means they are loaded again. Plugins are expected to 292 handle that. 293 294 An error only causes sourcing the script where it 295 happens to be aborted, further plugins will be loaded. 296 See |packages|. 297 {only available when compiled with |+eval|} 298 299:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167* 300 Specify the character encoding used in the script. 301 The following lines will be converted from [encoding] 302 to the value of the 'encoding' option, if they are 303 different. Examples: > 304 scriptencoding iso-8859-5 305 scriptencoding cp932 306< 307 When [encoding] is empty, no conversion is done. This 308 can be used to restrict conversion to a sequence of 309 lines: > 310 scriptencoding euc-jp 311 ... lines to be converted ... 312 scriptencoding 313 ... not converted ... 314 315< When conversion isn't supported by the system, there 316 is no error message and no conversion is done. When a 317 line can't be converted there is no error and the 318 original line is kept. 319 320 Don't use "ucs-2" or "ucs-4", scripts cannot be in 321 these encodings (they would contain NUL bytes). 322 When a sourced script starts with a BOM (Byte Order 323 Mark) in utf-8 format Vim will recognize it, no need 324 to use ":scriptencoding utf-8" then. 325 326 If you set the 'encoding' option in your |.vimrc|, 327 `:scriptencoding` must be placed after that. E.g.: > 328 set encoding=utf-8 329 scriptencoding utf-8 330< 331 332:scriptv[ersion] {version} *:scriptv* *:scriptversion* 333 *E999* *E984* 334 Specify the version of Vim for the lines that follow 335 in the same file. Only applies at the toplevel of 336 sourced scripts, not inside functions. 337 338 If {version} is higher than what the current Vim 339 version supports E999 will be given. You either need 340 to rewrite the script to make it work with an older 341 Vim version, or update Vim to a newer version. See 342 |vimscript-version| for what changed between versions. 343 344 *:scr* *:scriptnames* 345:scr[iptnames] List all sourced script names, in the order they were 346 first sourced. The number is used for the script ID 347 |<SID>|. 348 {not available when compiled without the |+eval| 349 feature} 350 351:scr[iptnames][!] {scriptId} *:script* 352 Edit script {scriptId}. Although ":scriptnames name" 353 works, using ":script name" is recommended. 354 When the current buffer can't be |abandon|ed and the ! 355 is not present, the command fails. 356 357 *:fini* *:finish* *E168* 358:fini[sh] Stop sourcing a script. Can only be used in a Vim 359 script file. This is a quick way to skip the rest of 360 the file. If it is used after a |:try| but before the 361 matching |:finally| (if present), the commands 362 following the ":finally" up to the matching |:endtry| 363 are executed first. This process applies to all 364 nested ":try"s in the script. The outermost ":endtry" 365 then stops sourcing the script. 366 367All commands and command sequences can be repeated by putting them in a named 368register and then executing it. There are two ways to get the commands in the 369register: 370- Use the record command "q". You type the commands once, and while they are 371 being executed they are stored in a register. Easy, because you can see 372 what you are doing. If you make a mistake, "p"ut the register into the 373 file, edit the command sequence, and then delete it into the register 374 again. You can continue recording by appending to the register (use an 375 uppercase letter). 376- Delete or yank the command sequence into the register. 377 378Often used command sequences can be put under a function key with the ':map' 379command. 380 381An alternative is to put the commands in a file, and execute them with the 382':source!' command. Useful for long command sequences. Can be combined with 383the ':map' command to put complicated commands under a function key. 384 385The ':source' command reads Ex commands from a file line by line. You will 386have to type any needed keyboard input. The ':source!' command reads from a 387script file character by character, interpreting each character as if you 388typed it. 389 390Example: When you give the ":!ls" command you get the |hit-enter| prompt. If 391you ':source' a file with the line "!ls" in it, you will have to type the 392<Enter> yourself. But if you ':source!' a file with the line ":!ls" in it, 393the next characters from that file are read until a <CR> is found. You will 394not have to type <CR> yourself, unless ":!ls" was the last line in the file. 395 396It is possible to put ':source[!]' commands in the script file, so you can 397make a top-down hierarchy of script files. The ':source' command can be 398nested as deep as the number of files that can be opened at one time (about 39915). The ':source!' command can be nested up to 15 levels deep. 400 401You can use the "<sfile>" string (literally, this is not a special key) inside 402of the sourced file, in places where a file name is expected. It will be 403replaced by the file name of the sourced file. For example, if you have a 404"other.vimrc" file in the same directory as your ".vimrc" file, you can source 405it from your ".vimrc" file with this command: > 406 :source <sfile>:h/other.vimrc 407 408In script files terminal-dependent key codes are represented by 409terminal-independent two character codes. This means that they can be used 410in the same way on different kinds of terminals. The first character of a 411key code is 0x80 or 128, shown on the screen as "~@". The second one can be 412found in the list |key-notation|. Any of these codes can also be entered 413with CTRL-V followed by the three digit decimal code. This does NOT work for 414the <t_xx> termcap codes, these can only be used in mappings. 415 416 *:source_crnl* *W15* 417Win32: Files that are read with ":source" normally have <CR><NL> <EOL>s. 418These always work. If you are using a file with <NL> <EOL>s (for example, a 419file made on Unix), this will be recognized if 'fileformats' is not empty and 420the first line does not end in a <CR>. This fails if the first line has 421something like ":map <F1> :help^M", where "^M" is a <CR>. If the first line 422ends in a <CR>, but following ones don't, you will get an error message, 423because the <CR> from the first lines will be lost. 424 425Mac Classic: Files that are read with ":source" normally have <CR> <EOL>s. 426These always work. If you are using a file with <NL> <EOL>s (for example, a 427file made on Unix), this will be recognized if 'fileformats' is not empty and 428the first line does not end in a <CR>. Be careful not to use a file with <NL> 429linebreaks which has a <CR> in first line. 430 431On other systems, Vim expects ":source"ed files to end in a <NL>. These 432always work. If you are using a file with <CR><NL> <EOL>s (for example, a 433file made on MS-Windows), all lines will have a trailing <CR>. This may cause 434problems for some commands (e.g., mappings). There is no automatic <EOL> 435detection, because it's common to start with a line that defines a mapping 436that ends in a <CR>, which will confuse the automaton. 437 438 *line-continuation* 439Long lines in a ":source"d Ex command script file can be split by inserting 440a line continuation symbol "\" (backslash) at the start of the next line. 441There can be white space before the backslash, which is ignored. 442 443Example: the lines > 444 :set comments=sr:/*,mb:*,el:*/, 445 \://, 446 \b:#, 447 \:%, 448 \n:>, 449 \fb:- 450are interpreted as if they were given in one line: 451 :set comments=sr:/*,mb:*,el:*/,://,b:#,:%,n:>,fb:- 452 453All leading whitespace characters in the line before a backslash are ignored. 454Note however that trailing whitespace in the line before it cannot be 455inserted freely; it depends on the position where a command is split up 456whether additional whitespace is allowed or not. 457 458When a space is required it's best to put it right after the backslash. A 459space at the end of a line is hard to see and may be accidentally deleted. > 460 :syn match Comment 461 \ "very long regexp" 462 \ keepend 463 464There is a problem with the ":append" and ":insert" commands: > 465 :1append 466 \asdf 467 . 468The backslash is seen as a line-continuation symbol, thus this results in the 469command: > 470 :1appendasdf 471 . 472To avoid this, add the 'C' flag to the 'cpoptions' option: > 473 :set cpo+=C 474 :1append 475 \asdf 476 . 477 :set cpo-=C 478 479Note that when the commands are inside a function, you need to add the 'C' 480flag when defining the function, it is not relevant when executing it. > 481 :set cpo+=C 482 :function Foo() 483 :1append 484 \asdf 485 . 486 :endfunction 487 :set cpo-=C 488< 489 *line-continuation-comment* 490To add a comment in between the lines start with '"\ '. Notice the space 491after the backslash. Example: > 492 let array = [ 493 "\ first entry comment 494 \ 'first', 495 "\ second entry comment 496 \ 'second', 497 \ ] 498 499Rationale: 500 Most programs work with a trailing backslash to indicate line 501 continuation. Using this in Vim would cause incompatibility with Vi. 502 For example for this Vi mapping: > 503 :map xx asdf\ 504< Therefore the unusual leading backslash is used. 505 506 Starting a comment in a continuation line results in all following 507 continuation lines to be part of the comment. Since it was like this 508 for a long time, when making it possible to add a comment halfway a 509 sequence of continuation lines, it was not possible to use \", since 510 that was a valid continuation line. Using '"\ ' comes closest, even 511 though it may look a bit weird. Requiring the space after the 512 backslash is to make it very unlikely this is a normal comment line. 513 514============================================================================== 5155. Using Vim packages *packages* 516 517A Vim package is a directory that contains one or more plugins. The 518advantages over normal plugins: 519- A package can be downloaded as an archive and unpacked in its own directory. 520 Thus the files are not mixed with files of other plugins. That makes it 521 easy to update and remove. 522- A package can be a git, mercurial, etc. repository. That makes it really 523 easy to update. 524- A package can contain multiple plugins that depend on each other. 525- A package can contain plugins that are automatically loaded on startup and 526 ones that are only loaded when needed with `:packadd`. 527 528 529Using a package and loading automatically ~ 530 531Let's assume your Vim files are in the "~/.vim" directory and you want to add a 532package from a zip archive "/tmp/foopack.zip": 533 % mkdir -p ~/.vim/pack/foo 534 % cd ~/.vim/pack/foo 535 % unzip /tmp/foopack.zip 536 537The directory name "foo" is arbitrary, you can pick anything you like. 538 539You would now have these files under ~/.vim: 540 pack/foo/README.txt 541 pack/foo/start/foobar/plugin/foo.vim 542 pack/foo/start/foobar/syntax/some.vim 543 pack/foo/opt/foodebug/plugin/debugger.vim 544 545When Vim starts up, after processing your .vimrc, it scans all directories in 546'packpath' for plugins under the "pack/*/start" directory. First all those 547directories are added to 'runtimepath'. Then all the plugins are loaded. 548See |packload-two-steps| for how these two steps can be useful. 549 550In the example Vim will find "pack/foo/start/foobar/plugin/foo.vim" and adds 551"~/.vim/pack/foo/start/foobar" to 'runtimepath'. 552 553If the "foobar" plugin kicks in and sets the 'filetype' to "some", Vim will 554find the syntax/some.vim file, because its directory is in 'runtimepath'. 555 556Vim will also load ftdetect files, if there are any. 557 558Note that the files under "pack/foo/opt" are not loaded automatically, only the 559ones under "pack/foo/start". See |pack-add| below for how the "opt" directory 560is used. 561 562Loading packages automatically will not happen if loading plugins is disabled, 563see |load-plugins|. 564 565To load packages earlier, so that 'runtimepath' gets updated: > 566 :packloadall 567This also works when loading plugins is disabled. The automatic loading will 568only happen once. 569 570If the package has an "after" directory, that directory is added to the end of 571'runtimepath', so that anything there will be loaded later. 572 573 574Using a single plugin and loading it automatically ~ 575 576If you don't have a package but a single plugin, you need to create the extra 577directory level: 578 % mkdir -p ~/.vim/pack/foo/start/foobar 579 % cd ~/.vim/pack/foo/start/foobar 580 % unzip /tmp/someplugin.zip 581 582You would now have these files: 583 pack/foo/start/foobar/plugin/foo.vim 584 pack/foo/start/foobar/syntax/some.vim 585 586From here it works like above. 587 588 589Optional plugins ~ 590 *pack-add* 591To load an optional plugin from a pack use the `:packadd` command: > 592 :packadd foodebug 593This searches for "pack/*/opt/foodebug" in 'packpath' and will find 594~/.vim/pack/foo/opt/foodebug/plugin/debugger.vim and source it. 595 596This could be done if some conditions are met. For example, depending on 597whether Vim supports a feature or a dependency is missing. 598 599You can also load an optional plugin at startup, by putting this command in 600your |.vimrc|: > 601 :packadd! foodebug 602The extra "!" is so that the plugin isn't loaded if Vim was started with 603|--noplugin|. 604 605It is perfectly normal for a package to only have files in the "opt" 606directory. You then need to load each plugin when you want to use it. 607 608 609Where to put what ~ 610 611Since color schemes, loaded with `:colorscheme`, are found below 612"pack/*/start" and "pack/*/opt", you could put them anywhere. We recommend 613you put them below "pack/*/opt", for example 614".vim/pack/mycolors/opt/dark/colors/very_dark.vim". 615 616Filetype plugins should go under "pack/*/start", so that they are always 617found. Unless you have more than one plugin for a file type and want to 618select which one to load with `:packadd`. E.g. depending on the compiler 619version: > 620 if foo_compiler_version > 34 621 packadd foo_new 622 else 623 packadd foo_old 624 endif 625 626The "after" directory is most likely not useful in a package. It's not 627disallowed though. 628 629============================================================================== 6306. Creating Vim packages *package-create* 631 632This assumes you write one or more plugins that you distribute as a package. 633 634If you have two unrelated plugins you would use two packages, so that Vim 635users can chose what they include or not. Or you can decide to use one 636package with optional plugins, and tell the user to add the ones he wants with 637`:packadd`. 638 639Decide how you want to distribute the package. You can create an archive or 640you could use a repository. An archive can be used by more users, but is a 641bit harder to update to a new version. A repository can usually be kept 642up-to-date easily, but it requires a program like "git" to be available. 643You can do both, github can automatically create an archive for a release. 644 645Your directory layout would be like this: 646 start/foobar/plugin/foo.vim " always loaded, defines commands 647 start/foobar/plugin/bar.vim " always loaded, defines commands 648 start/foobar/autoload/foo.vim " loaded when foo command used 649 start/foobar/doc/foo.txt " help for foo.vim 650 start/foobar/doc/tags " help tags 651 opt/fooextra/plugin/extra.vim " optional plugin, defines commands 652 opt/fooextra/autoload/extra.vim " loaded when extra command used 653 opt/fooextra/doc/extra.txt " help for extra.vim 654 opt/fooextra/doc/tags " help tags 655 656This allows for the user to do: > 657 mkdir ~/.vim/pack/myfoobar 658 cd ~/.vim/pack/myfoobar 659 git clone https://github.com/you/foobar.git 660 661Here "myfoobar" is a name that the user can choose, the only condition is that 662it differs from other packages. 663 664In your documentation you explain what the plugins do, and tell the user how 665to load the optional plugin: > 666 :packadd! fooextra 667 668You could add this packadd command in one of your plugins, to be executed when 669the optional plugin is needed. 670 671Run the `:helptags` command to generate the doc/tags file. Including this 672generated file in the package means that the user can drop the package in his 673pack directory and the help command works right away. Don't forget to re-run 674the command after changing the plugin help: > 675 :helptags path/start/foobar/doc 676 :helptags path/opt/fooextra/doc 677 678 679Dependencies between plugins ~ 680 *packload-two-steps* 681Suppose you have two plugins that depend on the same functionality. You can 682put the common functionality in an autoload directory, so that it will be 683found automatically. Your package would have these files: 684 685 pack/foo/start/one/plugin/one.vim > 686 call foolib#getit() 687< pack/foo/start/two/plugin/two.vim > 688 call foolib#getit() 689< pack/foo/start/lib/autoload/foolib.vim > 690 func foolib#getit() 691 692This works, because loading packages will first add all found directories to 693'runtimepath' before sourcing the plugins. 694 695============================================================================== 6967. Debugging scripts *debug-scripts* 697 698Besides the obvious messages that you can add to your scripts to find out what 699they are doing, Vim offers a debug mode. This allows you to step through a 700sourced file or user function and set breakpoints. 701 702NOTE: The debugging mode is far from perfect. Debugging will have side 703effects on how Vim works. You cannot use it to debug everything. For 704example, the display is messed up by the debugging messages. 705 706An alternative to debug mode is setting the 'verbose' option. With a bigger 707number it will give more verbose messages about what Vim is doing. 708 709 710STARTING DEBUG MODE *debug-mode* 711 712To enter debugging mode use one of these methods: 7131. Start Vim with the |-D| argument: > 714 vim -D file.txt 715< Debugging will start as soon as the first vimrc file is sourced. This is 716 useful to find out what is happening when Vim is starting up. A side 717 effect is that Vim will switch the terminal mode before initialisations 718 have finished, with unpredictable results. 719 For a GUI-only version (Windows, Macintosh) the debugging will start as 720 soon as the GUI window has been opened. To make this happen early, add a 721 ":gui" command in the vimrc file. 722 *:debug* 7232. Run a command with ":debug" prepended. Debugging will only be done while 724 this command executes. Useful for debugging a specific script or user 725 function. And for scripts and functions used by autocommands. Example: > 726 :debug edit test.txt.gz 727 7283. Set a breakpoint in a sourced file or user function. You could do this in 729 the command line: > 730 vim -c "breakadd file */explorer.vim" . 731< This will run Vim and stop in the first line of the "explorer.vim" script. 732 Breakpoints can also be set while in debugging mode. 733 734In debugging mode every executed command is displayed before it is executed. 735Comment lines, empty lines and lines that are not executed are skipped. When 736a line contains two commands, separated by "|", each command will be displayed 737separately. 738 739 740DEBUG MODE 741 742Once in debugging mode, the usual Ex commands can be used. For example, to 743inspect the value of a variable: > 744 echo idx 745When inside a user function, this will print the value of the local variable 746"idx". Prepend "g:" to get the value of a global variable: > 747 echo g:idx 748All commands are executed in the context of the current function or script. 749You can also set options, for example setting or resetting 'verbose' will show 750what happens, but you might want to set it just before executing the lines you 751are interested in: > 752 :set verbose=20 753 754Commands that require updating the screen should be avoided, because their 755effect won't be noticed until after leaving debug mode. For example: > 756 :help 757won't be very helpful. 758 759There is a separate command-line history for debug mode. 760 761The line number for a function line is relative to the start of the function. 762If you have trouble figuring out where you are, edit the file that defines 763the function in another Vim, search for the start of the function and do 764"99j". Replace "99" with the line number. 765 766Additionally, these commands can be used: 767 *>cont* 768 cont Continue execution until the next breakpoint is hit. 769 *>quit* 770 quit Abort execution. This is like using CTRL-C, some 771 things might still be executed, doesn't abort 772 everything. Still stops at the next breakpoint. 773 *>next* 774 next Execute the command and come back to debug mode when 775 it's finished. This steps over user function calls 776 and sourced files. 777 *>step* 778 step Execute the command and come back to debug mode for 779 the next command. This steps into called user 780 functions and sourced files. 781 *>interrupt* 782 interrupt This is like using CTRL-C, but unlike ">quit" comes 783 back to debug mode for the next command that is 784 executed. Useful for testing |:finally| and |:catch| 785 on interrupt exceptions. 786 *>finish* 787 finish Finish the current script or user function and come 788 back to debug mode for the command after the one that 789 sourced or called it. 790 *>bt* 791 *>backtrace* 792 *>where* 793 backtrace Show the call stacktrace for current debugging session. 794 bt 795 where 796 *>frame* 797 frame N Goes to N backtrace level. + and - signs make movement 798 relative. E.g., ":frame +3" goes three frames up. 799 *>up* 800 up Goes one level up from call stacktrace. 801 *>down* 802 down Goes one level down from call stacktrace. 803 804About the additional commands in debug mode: 805- There is no command-line completion for them, you get the completion for the 806 normal Ex commands only. 807- You can shorten them, up to a single character, unless more than one command 808 starts with the same letter. "f" stands for "finish", use "fr" for "frame". 809- Hitting <CR> will repeat the previous one. When doing another command, this 810 is reset (because it's not clear what you want to repeat). 811- When you want to use the Ex command with the same name, prepend a colon: 812 ":cont", ":next", ":finish" (or shorter). 813 814The backtrace shows the hierarchy of function calls, e.g.: 815 >bt ~ 816 3 function One[3] ~ 817 2 Two[3] ~ 818 ->1 Three[3] ~ 819 0 Four ~ 820 line 1: let four = 4 ~ 821 822The "->" points to the current frame. Use "up", "down" and "frame N" to 823select another frame. 824 825In the current frame you can evaluate the local function variables. There is 826no way to see the command at the current line yet. 827 828 829DEFINING BREAKPOINTS 830 *:breaka* *:breakadd* 831:breaka[dd] func [lnum] {name} 832 Set a breakpoint in a function. Example: > 833 :breakadd func Explore 834< Doesn't check for a valid function name, thus the breakpoint 835 can be set before the function is defined. 836 837:breaka[dd] file [lnum] {name} 838 Set a breakpoint in a sourced file. Example: > 839 :breakadd file 43 .vimrc 840 841:breaka[dd] here 842 Set a breakpoint in the current line of the current file. 843 Like doing: > 844 :breakadd file <cursor-line> <current-file> 845< Note that this only works for commands that are executed when 846 sourcing the file, not for a function defined in that file. 847 848:breaka[dd] expr {expression} 849 Sets a breakpoint, that will break whenever the {expression} 850 evaluates to a different value. Example: > 851 :breakadd expr g:lnum 852 853< Will break, whenever the global variable lnum changes. 854 Note if you watch a |script-variable| this will break 855 when switching scripts, since the script variable is only 856 valid in the script where it has been defined and if that 857 script is called from several other scripts, this will stop 858 whenever that particular variable will become visible or 859 unaccessible again. 860 861The [lnum] is the line number of the breakpoint. Vim will stop at or after 862this line. When omitted line 1 is used. 863 864 *:debug-name* 865{name} is a pattern that is matched with the file or function name. The 866pattern is like what is used for autocommands. There must be a full match (as 867if the pattern starts with "^" and ends in "$"). A "*" matches any sequence 868of characters. 'ignorecase' is not used, but "\c" can be used in the pattern 869to ignore case |/\c|. Don't include the () for the function name! 870 871The match for sourced scripts is done against the full file name. If no path 872is specified the current directory is used. Examples: > 873 breakadd file explorer.vim 874matches "explorer.vim" in the current directory. > 875 breakadd file *explorer.vim 876matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. > 877 breakadd file */explorer.vim 878matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory. 879 880The match for functions is done against the name as it's shown in the output 881of ":function". For local functions this means that something like "<SNR>99_" 882is prepended. 883 884Note that functions are first loaded and later executed. When they are loaded 885the "file" breakpoints are checked, when they are executed the "func" 886breakpoints. 887 888 889DELETING BREAKPOINTS 890 *:breakd* *:breakdel* *E161* 891:breakd[el] {nr} 892 Delete breakpoint {nr}. Use |:breaklist| to see the number of 893 each breakpoint. 894 895:breakd[el] * 896 Delete all breakpoints. 897 898:breakd[el] func [lnum] {name} 899 Delete a breakpoint in a function. 900 901:breakd[el] file [lnum] {name} 902 Delete a breakpoint in a sourced file. 903 904:breakd[el] here 905 Delete a breakpoint at the current line of the current file. 906 907When [lnum] is omitted, the first breakpoint in the function or file is 908deleted. 909The {name} must be exactly the same as what was typed for the ":breakadd" 910command. "explorer", "*explorer.vim" and "*explorer*" are different. 911 912 913LISTING BREAKPOINTS 914 *:breakl* *:breaklist* 915:breakl[ist] 916 List all breakpoints. 917 918 919OBSCURE 920 921 *:debugg* *:debuggreedy* 922:debugg[reedy] 923 Read debug mode commands from the normal input stream, instead 924 of getting them directly from the user. Only useful for test 925 scripts. Example: > 926 echo 'q^Mq' | vim -e -s -c debuggreedy -c 'breakadd file script.vim' -S script.vim 927 928:0debugg[reedy] 929 Undo ":debuggreedy": get debug mode commands directly from the 930 user, don't use typeahead for debug commands. 931 932============================================================================== 9338. Profiling *profile* *profiling* 934 935Profiling means that Vim measures the time that is spent on executing 936functions and/or scripts. The |+profile| feature is required for this. 937It is only included when Vim was compiled with "huge" features. 938 939You can also use the |reltime()| function to measure time. This only requires 940the |+reltime| feature, which is present more often. 941 942For profiling syntax highlighting see |:syntime|. 943 944For example, to profile the one_script.vim script file: > 945 :profile start /tmp/one_script_profile 946 :profile file one_script.vim 947 :source one_script.vim 948 :exit 949 950 951:prof[ile] start {fname} *:prof* *:profile* *E750* 952 Start profiling, write the output in {fname} upon exit. 953 "~/" and environment variables in {fname} will be expanded. 954 If {fname} already exists it will be silently overwritten. 955 The variable |v:profiling| is set to one. 956 957:prof[ile] pause 958 Don't profile until the following ":profile continue". Can be 959 used when doing something that should not be counted (e.g., an 960 external command). Does not nest. 961 962:prof[ile] continue 963 Continue profiling after ":profile pause". 964 965:prof[ile] func {pattern} 966 Profile function that matches the pattern {pattern}. 967 See |:debug-name| for how {pattern} is used. 968 969:prof[ile][!] file {pattern} 970 Profile script file that matches the pattern {pattern}. 971 See |:debug-name| for how {pattern} is used. 972 This only profiles the script itself, not the functions 973 defined in it. 974 When the [!] is added then all functions defined in the script 975 will also be profiled. 976 Note that profiling only starts when the script is loaded 977 after this command. A :profile command in the script itself 978 won't work. 979 980 981:profd[el] ... *:profd* *:profdel* 982 Stop profiling for the arguments specified. See |:breakdel| 983 for the arguments. 984 985 986You must always start with a ":profile start fname" command. The resulting 987file is written when Vim exits. Here is an example of the output, with line 988numbers prepended for the explanation: 989 990 1 FUNCTION Test2() ~ 991 2 Called 1 time ~ 992 3 Total time: 0.155251 ~ 993 4 Self time: 0.002006 ~ 994 5 ~ 995 6 count total (s) self (s) ~ 996 7 9 0.000096 for i in range(8) ~ 997 8 8 0.153655 0.000410 call Test3() ~ 998 9 8 0.000070 endfor ~ 999 10 " Ask a question ~ 1000 11 1 0.001341 echo input("give me an answer: ") ~ 1001 1002The header (lines 1-4) gives the time for the whole function. The "Total" 1003time is the time passed while the function was executing. The "Self" time is 1004the "Total" time reduced by time spent in: 1005- other user defined functions 1006- sourced scripts 1007- executed autocommands 1008- external (shell) commands 1009 1010Lines 7-11 show the time spent in each executed line. Lines that are not 1011executed do not count. Thus a comment line is never counted. 1012 1013The Count column shows how many times a line was executed. Note that the 1014"for" command in line 7 is executed one more time as the following lines. 1015That is because the line is also executed to detect the end of the loop. 1016 1017The time Vim spends waiting for user input isn't counted at all. Thus how 1018long you take to respond to the input() prompt is irrelevant. 1019 1020Profiling should give a good indication of where time is spent, but keep in 1021mind there are various things that may clobber the results: 1022 1023- The accuracy of the time measured depends on the gettimeofday() system 1024 function. It may only be as accurate as 1/100 second, even though the times 1025 are displayed in micro seconds. 1026 1027- Real elapsed time is measured, if other processes are busy they may cause 1028 delays at unpredictable moments. You may want to run the profiling several 1029 times and use the lowest results. 1030 1031- If you have several commands in one line you only get one time. Split the 1032 line to see the time for the individual commands. 1033 1034- The time of the lines added up is mostly less than the time of the whole 1035 function. There is some overhead in between. 1036 1037- Functions that are deleted before Vim exits will not produce profiling 1038 information. You can check the |v:profiling| variable if needed: > 1039 :if !v:profiling 1040 : delfunc MyFunc 1041 :endif 1042< 1043- Profiling may give weird results on multi-processor systems, when sleep 1044 mode kicks in or the processor frequency is reduced to save power. 1045 1046- The "self" time is wrong when a function is used recursively. 1047 1048 1049 vim:tw=78:ts=8:noet:ft=help:norl: 1050