comparison src/vim.h @ 13444:9f06f7aca74c v8.0.1596

patch 8.0.1596: no autocommand specifically for opening a terminal window commit https://github.com/vim/vim/commit/b852c3e64d319d6ec47dd780c8654ae095e1d8c2 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 11 16:55:36 2018 +0100 patch 8.0.1596: no autocommand specifically for opening a terminal window Problem: No autocommand specifically for opening a terminal window. Solution: Add TerminalOpen. (?, closes https://github.com/vim/vim/issues/2484)
author Christian Brabandt <cb@256bit.org>
date Sun, 11 Mar 2018 17:00:08 +0100
parents 94e638936d3e
children b18e5f37c44b
comparison
equal deleted inserted replaced
13443:b8e5a0ebfcbd 13444:9f06f7aca74c
1344 EVENT_TEXTCHANGEDP, /* text was modified in Insert mode with popup 1344 EVENT_TEXTCHANGEDP, /* text was modified in Insert mode with popup
1345 menu visible */ 1345 menu visible */
1346 EVENT_CMDUNDEFINED, /* command undefined */ 1346 EVENT_CMDUNDEFINED, /* command undefined */
1347 EVENT_OPTIONSET, /* option was set */ 1347 EVENT_OPTIONSET, /* option was set */
1348 EVENT_TEXTYANKPOST, /* after some text was yanked */ 1348 EVENT_TEXTYANKPOST, /* after some text was yanked */
1349 EVENT_TERMINALOPEN, /* after a terminal buffer was created */
1349 NUM_EVENTS /* MUST be the last one */ 1350 NUM_EVENTS /* MUST be the last one */
1350 }; 1351 };
1351 1352
1352 typedef enum auto_event event_T; 1353 typedef enum auto_event event_T;
1353 1354