comparison src/vim.h @ 12656:0a9dacb8826a v8.0.1206

patch 8.0.1206: no autocmd for entering or leaving the command line commit https://github.com/vim/vim/commit/fafcf0dd59fd9c4ef743bb333ae40d1d322b6079 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 19 18:35:51 2017 +0200 patch 8.0.1206: no autocmd for entering or leaving the command line Problem: No autocmd for entering or leaving the command line. Solution: Add CmdlineEnter and CmdlineLeave.
author Christian Brabandt <cb@256bit.org>
date Thu, 19 Oct 2017 18:45:05 +0200
parents b1a7e3968a31
children 351cf7c67bbe
comparison
equal deleted inserted replaced
12655:6963f5ca8813 12656:0a9dacb8826a
1293 EVENT_BUFWINENTER, /* after showing a buffer in a window */ 1293 EVENT_BUFWINENTER, /* after showing a buffer in a window */
1294 EVENT_BUFWINLEAVE, /* just after buffer removed from window */ 1294 EVENT_BUFWINLEAVE, /* just after buffer removed from window */
1295 EVENT_BUFWRITEPOST, /* after writing a buffer */ 1295 EVENT_BUFWRITEPOST, /* after writing a buffer */
1296 EVENT_BUFWRITEPRE, /* before writing a buffer */ 1296 EVENT_BUFWRITEPRE, /* before writing a buffer */
1297 EVENT_BUFWRITECMD, /* write buffer using command */ 1297 EVENT_BUFWRITECMD, /* write buffer using command */
1298 EVENT_CMDLINEENTER, /* after entering the command line */
1299 EVENT_CMDLINELEAVE, /* before leaving the command line */
1298 EVENT_CMDWINENTER, /* after entering the cmdline window */ 1300 EVENT_CMDWINENTER, /* after entering the cmdline window */
1299 EVENT_CMDWINLEAVE, /* before leaving the cmdline window */ 1301 EVENT_CMDWINLEAVE, /* before leaving the cmdline window */
1300 EVENT_COLORSCHEME, /* after loading a colorscheme */ 1302 EVENT_COLORSCHEME, /* after loading a colorscheme */
1301 EVENT_COMPLETEDONE, /* after finishing insert complete */ 1303 EVENT_COMPLETEDONE, /* after finishing insert complete */
1302 EVENT_FILEAPPENDPOST, /* after appending to a file */ 1304 EVENT_FILEAPPENDPOST, /* after appending to a file */