diff src/vim.h @ 3676:f07475816079 v7.3.598

updated for version 7.3.598 Problem: Cannot act upon end of completion. (Taro Muraoka) Solution: Add an autocommand event that is triggered when completion has finished. (Idea by Florian Klein)
author Bram Moolenaar <bram@vim.org>
date Tue, 10 Jul 2012 17:14:56 +0200
parents 46896c29edd7
children 99f076ca8d84
line wrap: on
line diff
--- a/src/vim.h
+++ b/src/vim.h
@@ -1241,6 +1241,7 @@ enum auto_event
     EVENT_CMDWINENTER,		/* after entering the cmdline window */
     EVENT_CMDWINLEAVE,		/* before leaving the cmdline window */
     EVENT_COLORSCHEME,		/* after loading a colorscheme */
+    EVENT_COMPLETEDONE,		/* after finishing insert complete */
     EVENT_FILEAPPENDPOST,	/* after appending to a file */
     EVENT_FILEAPPENDPRE,	/* before appending to a file */
     EVENT_FILEAPPENDCMD,	/* append to a file using command */