diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-06-24 15:53:16 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-06-24 15:53:16 +0000 |
commit | f4b8e57ffd048f9ca46dd7618939ba7a1b2294ec (patch) | |
tree | 08865b59e356d861c0d1321e4adaef8385e53635 /runtime/doc/repeat.txt | |
parent | 69a7cb473ceae109b61fae9aa04ee0c29afba5d9 (diff) | |
download | vim-git-f4b8e57ffd048f9ca46dd7618939ba7a1b2294ec.tar.gz |
updated for version 7.0002
Diffstat (limited to 'runtime/doc/repeat.txt')
-rw-r--r-- | runtime/doc/repeat.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt index 5aee40187..f2fa8f6e6 100644 --- a/runtime/doc/repeat.txt +++ b/runtime/doc/repeat.txt @@ -1,4 +1,4 @@ -*repeat.txt* For Vim version 7.0aa. Last change: 2004 Apr 02 +*repeat.txt* For Vim version 7.0aa. Last change: 2004 Jun 22 VIM REFERENCE MANUAL by Bram Moolenaar @@ -467,6 +467,13 @@ DEFINING BREAKPOINTS Set a breakpoint in a sourced file. Example: > :breakadd file 43 .vimrc +:breaka[dd] here + Set a breakpoint in the current line of the current file. + Like doing: > + :breakadd file <cursor-line> <current-file> +< Note that this only works for commands that are executed when + sourcing the file, not for a function defined in that file. + The [lnum] is the line number of the breakpoint. Vim will stop at or after this line. When omitted line 1 is used. @@ -501,6 +508,9 @@ DELETING BREAKPOINTS :breakd[el] file [lnum] {name} Delete a breakpoint in a sourced file. +:breakd[el] here + Delete a breakpoint at the current line of the current file. + When [lnum] is omitted, the first breakpoint in the function or file is deleted. The {name} must be exactly the same as what was typed for the ":breakadd" |