comparison runtime/doc/autocmd.txt @ 694:07d199fe02ed v7.0209

updated for version 7.0209
author vimboss
date Mon, 27 Feb 2006 23:58:35 +0000
parents e649c78407e6
children 8ae24f338cab
comparison
equal deleted inserted replaced
693:05dc93b9c61f 694:07d199fe02ed
1 *autocmd.txt* For Vim version 7.0aa. Last change: 2006 Feb 20 1 *autocmd.txt* For Vim version 7.0aa. Last change: 2006 Feb 27
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
469 *CursorHoldI* 469 *CursorHoldI*
470 CursorHoldI Just like CursorHold, but in Insert mode. 470 CursorHoldI Just like CursorHold, but in Insert mode.
471 471
472 *CursorMoved* 472 *CursorMoved*
473 CursorMoved After the cursor was moved in Normal mode. 473 CursorMoved After the cursor was moved in Normal mode.
474 Also when the text of the cursor line has been
475 changed, e.g., with "x", "rx" or "p".
474 Not triggered when there is typeahead or when 476 Not triggered when there is typeahead or when
475 an operator is pending. 477 an operator is pending.
476 For an example see |match-parens|. 478 For an example see |match-parens|.
477 Careful: Don't do anything that the user does 479 Careful: Don't do anything that the user does
478 not expect or that is slow. 480 not expect or that is slow.