diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-02-29 18:22:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-02-29 18:22:08 +0100 |
commit | f5876f147abc44914e6f0d572aabb9c1f92c1911 (patch) | |
tree | 74a765dd6d14d945a32a6310fb798b8798ef0e08 /src/proto/fileio.pro | |
parent | 91856270dfbf7a042e2869bc44c9c7b217852f40 (diff) | |
download | vim-git-f5876f147abc44914e6f0d572aabb9c1f92c1911.tar.gz |
updated for version 7.3.461v7.3.461
Problem: The InsertCharPre autocommand event is not triggered during
completion and when typing several characters quickly.
Solution: Also trigger InsertCharPre during completion. Do not read ahead
when an InsertCharPre autocommand is defined. (Yasuhiro Matsumoto)
Diffstat (limited to 'src/proto/fileio.pro')
-rw-r--r-- | src/proto/fileio.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/fileio.pro b/src/proto/fileio.pro index d65ec7cfe..baf621664 100644 --- a/src/proto/fileio.pro +++ b/src/proto/fileio.pro @@ -44,6 +44,7 @@ int has_cursorhold __ARGS((void)); int trigger_cursorhold __ARGS((void)); int has_cursormoved __ARGS((void)); int has_cursormovedI __ARGS((void)); +int has_insertcharpre __ARGS((void)); void block_autocmds __ARGS((void)); void unblock_autocmds __ARGS((void)); int has_autocmd __ARGS((event_T event, char_u *sfname, buf_T *buf)); |