From cfa3caec0c0d54e593d6c19241da996b4111591b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Jul 2012 17:14:56 +0200 Subject: 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) --- src/vim.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vim.h') diff --git a/src/vim.h b/src/vim.h index 7fd6df9a3..3ed981e53 100644 --- 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 */ -- cgit v1.2.1