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/proto/eval.pro | |
parent | ae94b7718ab5ecc820ce487c9ea0178c04a9853c (diff) | |
download | vim-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.pro | 1 |
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)); |