diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-07-10 17:56:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-07-10 17:56:23 +0200 |
commit | 42a4512f62322fcc12c0071037161d2079d98ba5 (patch) | |
tree | 01c45b917ad125f14eb981148a9828a453b85253 /src/vim.h | |
parent | ae94b7718ab5ecc820ce487c9ea0178c04a9853c (diff) | |
download | vim-42a4512f62322fcc12c0071037161d2079d98ba5.zip |
patch 7.4.774
Problem: When using the CompleteDone autocommand event it's difficult to
get to the completed items.
Solution: Add the v:completed_items variable. (Shougo Matsu)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1897,7 +1897,8 @@ typedef int proftime_T; /* dummy for function prototypes */ #define VV_OLDFILES 55 #define VV_WINDOWID 56 #define VV_PROGPATH 57 -#define VV_LEN 58 /* number of v: vars */ +#define VV_COMPLETED_ITEM 58 +#define VV_LEN 59 /* number of v: vars */ #ifdef FEAT_CLIPBOARD |