comparison runtime/doc/autocmd.txt @ 13818:28ac7914b2b6

Update runtime files and translations commit https://github.com/vim/vim/commit/15142e27aaafa15b72d1042c25fbb5e4f12b6736 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 30 22:19:58 2018 +0200 Update runtime files and translations
author Christian Brabandt <cb@256bit.org>
date Mon, 30 Apr 2018 22:30:08 +0200
parents a62eeee5f116
children 8e583c52eb44
comparison
equal deleted inserted replaced
13817:49f764b1d6cc 13818:28ac7914b2b6
1 *autocmd.txt* For Vim version 8.0. Last change: 2018 Apr 19 1 *autocmd.txt* For Vim version 8.0. Last change: 2018 Apr 30
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
345 when popup menu is not visible 345 when popup menu is not visible
346 |TextChangedP| after a change was made to the text in Insert mode 346 |TextChangedP| after a change was made to the text in Insert mode
347 when popup menu visible 347 when popup menu visible
348 |TextYankPost| after text is yanked or deleted 348 |TextYankPost| after text is yanked or deleted
349 349
350 |ColorSchemePre| before loading a color scheme
350 |ColorScheme| after loading a color scheme 351 |ColorScheme| after loading a color scheme
351 352
352 |RemoteReply| a reply from a server Vim was received 353 |RemoteReply| a reply from a server Vim was received
353 354
354 |QuickFixCmdPre| before a quickfix command is run 355 |QuickFixCmdPre| before a quickfix command is run
560 colorscheme name. <afile> can be used for the 561 colorscheme name. <afile> can be used for the
561 name of the actual file where this option was 562 name of the actual file where this option was
562 set, and <amatch> for the new colorscheme 563 set, and <amatch> for the new colorscheme
563 name. 564 name.
564 565
566 *ColorSchemePre*
567 ColorSchemePre Before loading a color scheme. |:colorscheme|
568 Useful to setup removing things added by a
569 color scheme, before another one is loaded.
565 570
566 *CompleteDone* 571 *CompleteDone*
567 CompleteDone After Insert mode completion is done. Either 572 CompleteDone After Insert mode completion is done. Either
568 when something was completed or abandoning 573 when something was completed or abandoning
569 completion. |ins-completion| 574 completion. |ins-completion|