comparison src/vim.h @ 19199:8cbadf7fb9d4 v8.2.0158

patch 8.2.0158: triggering CompleteDone earlier is not backwards compatible Commit: https://github.com/vim/vim/commit/3f169ce17e8b779d105c96138a8b4246f2d270b9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 26 22:43:31 2020 +0100 patch 8.2.0158: triggering CompleteDone earlier is not backwards compatible Problem: Triggering CompleteDone earlier is not backwards compatible. (Daniel Hahler) Solution: Add CompleteDonePre instead.
author Bram Moolenaar <Bram@vim.org>
date Sun, 26 Jan 2020 22:45:03 +0100
parents 94eda51ba9ba
children 9c8b803fe598
comparison
equal deleted inserted replaced
19198:d9a246aef2c9 19199:8cbadf7fb9d4
1301 EVENT_CMDWINLEAVE, // before leaving the cmdline window 1301 EVENT_CMDWINLEAVE, // before leaving the cmdline window
1302 EVENT_COLORSCHEME, // after loading a colorscheme 1302 EVENT_COLORSCHEME, // after loading a colorscheme
1303 EVENT_COLORSCHEMEPRE, // before loading a colorscheme 1303 EVENT_COLORSCHEMEPRE, // before loading a colorscheme
1304 EVENT_COMPLETECHANGED, // after completion popup menu changed 1304 EVENT_COMPLETECHANGED, // after completion popup menu changed
1305 EVENT_COMPLETEDONE, // after finishing insert complete 1305 EVENT_COMPLETEDONE, // after finishing insert complete
1306 EVENT_COMPLETEDONEPRE, // idem, before clearing info
1306 EVENT_CURSORHOLD, // cursor in same position for a while 1307 EVENT_CURSORHOLD, // cursor in same position for a while
1307 EVENT_CURSORHOLDI, // idem, in Insert mode 1308 EVENT_CURSORHOLDI, // idem, in Insert mode
1308 EVENT_CURSORMOVED, // cursor was moved 1309 EVENT_CURSORMOVED, // cursor was moved
1309 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode 1310 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode
1310 EVENT_DIFFUPDATED, // after diffs were updated 1311 EVENT_DIFFUPDATED, // after diffs were updated