comparison runtime/doc/autocmd.txt @ 4911:78c318784090

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sat, 15 Jun 2013 21:39:51 +0200
parents 605c9ce57ec3
children 6ec6b7ff2d43
comparison
equal deleted inserted replaced
4910:e0ff44b689e3 4911:78c318784090
1 *autocmd.txt* For Vim version 7.3. Last change: 2013 May 19 1 *autocmd.txt* For Vim version 7.3. Last change: 2013 Jun 15
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
511 versions} 511 versions}
512 *CursorHoldI* 512 *CursorHoldI*
513 CursorHoldI Just like CursorHold, but in Insert mode. 513 CursorHoldI Just like CursorHold, but in Insert mode.
514 514
515 *CursorMoved* 515 *CursorMoved*
516 CursorMoved After the cursor was moved in Normal mode. 516 CursorMoved After the cursor was moved in Normal or Visual
517 Also when the text of the cursor line has been 517 mode. Also when the text of the cursor line
518 changed, e.g., with "x", "rx" or "p". 518 has been changed, e.g., with "x", "rx" or "p".
519 Not triggered when there is typeahead or when 519 Not triggered when there is typeahead or when
520 an operator is pending. 520 an operator is pending.
521 For an example see |match-parens|. 521 For an example see |match-parens|.
522 Careful: This is triggered very often, don't 522 Careful: This is triggered very often, don't
523 do anything that the user does not expect or 523 do anything that the user does not expect or