comparison runtime/doc/autocmd.txt @ 22723:5b7ea82bc18f

Update runtime files. Commit: https://github.com/vim/vim/commit/cb80aa2d53e56d3aba3b3c439fb467f29a750c5e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 26 21:12:46 2020 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Mon, 26 Oct 2020 21:15:07 +0100
parents fba5ccf33794
children 6d50182e7e24
comparison
equal deleted inserted replaced
22722:41cc1c207f82 22723:5b7ea82bc18f
1 *autocmd.txt* For Vim version 8.2. Last change: 2020 Sep 25 1 *autocmd.txt* For Vim version 8.2. Last change: 2020 Oct 26
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
276 |BufLeave| before leaving to another buffer 276 |BufLeave| before leaving to another buffer
277 |BufWinEnter| after a buffer is displayed in a window 277 |BufWinEnter| after a buffer is displayed in a window
278 |BufWinLeave| before a buffer is removed from a window 278 |BufWinLeave| before a buffer is removed from a window
279 279
280 |BufUnload| before unloading a buffer 280 |BufUnload| before unloading a buffer
281 |BufHidden| just after a buffer has become hidden 281 |BufHidden| just before a buffer becomes hidden
282 |BufNew| just after creating a new buffer 282 |BufNew| just after creating a new buffer
283 283
284 |SwapExists| detected an existing swap file 284 |SwapExists| detected an existing swap file
285 285
286 Options 286 Options
881 The cursor is restored afterwards. If you do 881 The cursor is restored afterwards. If you do
882 not want that set |v:char| to a non-empty 882 not want that set |v:char| to a non-empty
883 string. 883 string.
884 *InsertLeavePre* 884 *InsertLeavePre*
885 InsertLeavePre Just before leaving Insert mode. Also when 885 InsertLeavePre Just before leaving Insert mode. Also when
886 using CTRL-O |i_CTRL-O|. Be caseful not to 886 using CTRL-O |i_CTRL-O|. Be careful not to
887 change mode or use `:normal`, it will likely 887 change mode or use `:normal`, it will likely
888 cause trouble. 888 cause trouble.
889 *InsertLeave* 889 *InsertLeave*
890 InsertLeave Just after leaving Insert mode. Also when 890 InsertLeave Just after leaving Insert mode. Also when
891 using CTRL-O |i_CTRL-O|. But not for |i_CTRL-C|. 891 using CTRL-O |i_CTRL-O|. But not for |i_CTRL-C|.