comparison runtime/doc/repeat.txt @ 25773:11b656e74444

Update runtime files Commit: https://github.com/vim/vim/commit/6c391a74fe90190796ca0b0c010112948a6e75d7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 9 21:55:11 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 Sep 2021 22:00:10 +0200
parents 84c7dc0fdcd2
children bb2175e5ccee
comparison
equal deleted inserted replaced
25772:55753c17b73d 25773:11b656e74444
1 *repeat.txt* For Vim version 8.2. Last change: 2021 Jun 27 1 *repeat.txt* For Vim version 8.2. Last change: 2021 Sep 09
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
891 891
892 :breaka[dd] expr {expression} 892 :breaka[dd] expr {expression}
893 Sets a breakpoint, that will break whenever the {expression} 893 Sets a breakpoint, that will break whenever the {expression}
894 evaluates to a different value. Example: > 894 evaluates to a different value. Example: >
895 :breakadd expr g:lnum 895 :breakadd expr g:lnum
896
897 < Will break, whenever the global variable lnum changes. 896 < Will break, whenever the global variable lnum changes.
897
898 Errors in evaluation are suppressed, you can use the name of a
899 variable that does not exist yet. This also means you will
900 not notice anything if the expression has a mistake.
901
898 Note if you watch a |script-variable| this will break 902 Note if you watch a |script-variable| this will break
899 when switching scripts, since the script variable is only 903 when switching scripts, since the script variable is only
900 valid in the script where it has been defined and if that 904 valid in the script where it has been defined and if that
901 script is called from several other scripts, this will stop 905 script is called from several other scripts, this will stop
902 whenever that particular variable will become visible or 906 whenever that particular variable will become visible or