comparison runtime/doc/repeat.txt @ 10:4e2284e71352

updated for version 7.0002
author vimboss
date Thu, 24 Jun 2004 15:53:16 +0000
parents 3fc0f57ecb91
children 4424b47a0797
comparison
equal deleted inserted replaced
9:4102fb4ea781 10:4e2284e71352
1 *repeat.txt* For Vim version 7.0aa. Last change: 2004 Apr 02 1 *repeat.txt* For Vim version 7.0aa. Last change: 2004 Jun 22
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
465 465
466 :breaka[dd] file [lnum] {name} 466 :breaka[dd] file [lnum] {name}
467 Set a breakpoint in a sourced file. Example: > 467 Set a breakpoint in a sourced file. Example: >
468 :breakadd file 43 .vimrc 468 :breakadd file 43 .vimrc
469 469
470 :breaka[dd] here
471 Set a breakpoint in the current line of the current file.
472 Like doing: >
473 :breakadd file <cursor-line> <current-file>
474 < Note that this only works for commands that are executed when
475 sourcing the file, not for a function defined in that file.
476
470 The [lnum] is the line number of the breakpoint. Vim will stop at or after 477 The [lnum] is the line number of the breakpoint. Vim will stop at or after
471 this line. When omitted line 1 is used. 478 this line. When omitted line 1 is used.
472 479
473 {name} is a pattern that is matched with the file or function name. The 480 {name} is a pattern that is matched with the file or function name. The
474 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
499 Delete a breakpoint in a function. 506 Delete a breakpoint in a function.
500 507
501 :breakd[el] file [lnum] {name} 508 :breakd[el] file [lnum] {name}
502 Delete a breakpoint in a sourced file. 509 Delete a breakpoint in a sourced file.
503 510
511 :breakd[el] here
512 Delete a breakpoint at the current line of the current file.
513
504 When [lnum] is omitted, the first breakpoint in the function or file is 514 When [lnum] is omitted, the first breakpoint in the function or file is
505 deleted. 515 deleted.
506 The {name} must be exactly the same as what was typed for the ":breakadd" 516 The {name} must be exactly the same as what was typed for the ":breakadd"
507 command. "explorer", "*explorer.vim" and "*explorer*" are different. 517 command. "explorer", "*explorer.vim" and "*explorer*" are different.
508 518