comparison runtime/doc/repeat.txt @ 11:4424b47a0797

updated for version 7.0003
author vimboss
date Wed, 30 Jun 2004 16:16:41 +0000
parents 4e2284e71352
children cc049b00ee70
comparison
equal deleted inserted replaced
10:4e2284e71352 11:4424b47a0797
481 pattern is like what is used for autocommands. There must be a full match (as 481 pattern is like what is used for autocommands. There must be a full match (as
482 if the pattern starts with "^" and ends in "$"). A "*" matches any sequence 482 if the pattern starts with "^" and ends in "$"). A "*" matches any sequence
483 of characters. 'ignorecase' is not used, but "\c" can be used in the pattern 483 of characters. 'ignorecase' is not used, but "\c" can be used in the pattern
484 to ignore case |/\c|. Don't include the () for the function name! 484 to ignore case |/\c|. Don't include the () for the function name!
485 485
486 The match for sourced scripts is done against the full file name. Examples: > 486 The match for sourced scripts is done against the full file name. If no path
487 breakadd file explorer 487 is specified the current directory is used. Examples: >
488 won't match, the path is missing. > 488 breakadd file explorer.vim
489 matches "explorer.vim" in the current directory. >
489 breakadd file *explorer.vim 490 breakadd file *explorer.vim
490 matches ".../plugin/explorer.vim" and ".../plugin/iexplorer.vim". > 491 matches ".../plugin/explorer.vim", ".../plugin/iexplorer.vim", etc. >
491 breakadd file */explorer.vim 492 breakadd file */explorer.vim
492 matches ".../plugin/explorer.vim" only. 493 matches ".../plugin/explorer.vim" and "explorer.vim" in any other directory.
493 494
494 The match for functions is done against the name as it's shown in the output 495 The match for functions is done against the name as it's shown in the output
495 of ":function". For local functions this means that something like "<SNR>99_" 496 of ":function". For local functions this means that something like "<SNR>99_"
496 is prepended. 497 is prepended.
497 498