summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-07-10 17:56:23 +0200
committerBram Moolenaar <Bram@vim.org>2015-07-10 17:56:23 +0200
commit42a4512f62322fcc12c0071037161d2079d98ba5 (patch)
tree01c45b917ad125f14eb981148a9828a453b85253 /src/vim.h
parentae94b7718ab5ecc820ce487c9ea0178c04a9853c (diff)
downloadvim-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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vim.h b/src/vim.h
index fe8f55828..4e36f3d72 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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