From caa8c06bae0ff351edb22d566a92a4b1009f191d Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 29 Jul 2019 02:36:46 +0200 Subject: vim-patch:8.1.1138: add CompleteChanged #10644 (This was originally a Neovim patch, but this commit merges some changes from the Vim patch.) https://github.com/vim/vim/commit/d7f246c68cfb97406bcd4b098a2df2d870b3ef92 --- runtime/doc/autocmd.txt | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'runtime') diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 461167015d..a3f13034a8 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -590,18 +590,19 @@ CompleteDone After Insert mode completion is done. Either completed item. CompleteChanged *CompleteChanged* - After each time popup menu changed, not fired - on popup menu hide, use |CompleteDone| for popup - menu hide. + After each time the Insert mode completion + menu changed. Not fired on popup menu hide, + use |CompleteDone| for that. Never triggered + recursively. Sets these |v:event| keys: completed_item - height - width - row - col - size - scrollbar + height nr of items visible + width screen cells + row top screen row + col leftmost screen column + size total nr of items + scrollbar TRUE if visible It is not allowed to change the text |textlock|. -- cgit