comparison src/vim.h @ 16268:0f65f2808470 v8.1.1138

patch 8.1.1138: plugins don't get notified when the popup menu changes commit https://github.com/vim/vim/commit/d7f246c68cfb97406bcd4b098a2df2d870b3ef92 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 8 18:15:41 2019 +0200 patch 8.1.1138: plugins don't get notified when the popup menu changes Problem: Plugins don't get notified when the popup menu changes. Solution: Add the CompleteChanged event. (Andy Massimino. closes https://github.com/vim/vim/issues/4176)
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Apr 2019 18:30:06 +0200
parents 973070a30381
children 54ffc82f38a8
comparison
equal deleted inserted replaced
16267:b471858040bc 16268:0f65f2808470
1268 EVENT_CMDUNDEFINED, // command undefined 1268 EVENT_CMDUNDEFINED, // command undefined
1269 EVENT_CMDWINENTER, // after entering the cmdline window 1269 EVENT_CMDWINENTER, // after entering the cmdline window
1270 EVENT_CMDWINLEAVE, // before leaving the cmdline window 1270 EVENT_CMDWINLEAVE, // before leaving the cmdline window
1271 EVENT_COLORSCHEME, // after loading a colorscheme 1271 EVENT_COLORSCHEME, // after loading a colorscheme
1272 EVENT_COLORSCHEMEPRE, // before loading a colorscheme 1272 EVENT_COLORSCHEMEPRE, // before loading a colorscheme
1273 EVENT_COMPLETECHANGED, // after completion popup menu changed
1273 EVENT_COMPLETEDONE, // after finishing insert complete 1274 EVENT_COMPLETEDONE, // after finishing insert complete
1274 EVENT_CURSORHOLD, // cursor in same position for a while 1275 EVENT_CURSORHOLD, // cursor in same position for a while
1275 EVENT_CURSORHOLDI, // idem, in Insert mode 1276 EVENT_CURSORHOLDI, // idem, in Insert mode
1276 EVENT_CURSORMOVED, // cursor was moved 1277 EVENT_CURSORMOVED, // cursor was moved
1277 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode 1278 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode