summaryrefslogtreecommitdiff
path: root/src/proto/eval.pro
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/proto/eval.pro
parentae94b7718ab5ecc820ce487c9ea0178c04a9853c (diff)
downloadvim-git-42a4512f62322fcc12c0071037161d2079d98ba5.tar.gz
patch 7.4.774v7.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/proto/eval.pro')
-rw-r--r--src/proto/eval.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 30416fb87..22b8b189d 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -91,6 +91,7 @@ void set_vim_var_char __ARGS((int c));
void set_vcount __ARGS((long count, long count1, int set_prevcount));
void set_vim_var_string __ARGS((int idx, char_u *val, int len));
void set_vim_var_list __ARGS((int idx, list_T *val));
+void set_vim_var_dict __ARGS((int idx, dict_T *val));
void set_reg_var __ARGS((int c));
char_u *v_exception __ARGS((char_u *oldval));
char_u *v_throwpoint __ARGS((char_u *oldval));