aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-07-29 02:36:46 +0200
committerGitHub <noreply@github.com>2019-07-29 02:36:46 +0200
commitcaa8c06bae0ff351edb22d566a92a4b1009f191d (patch)
tree69052a0f25d5b6e9207dacbec2da568866cac92d /runtime
parent505f47403ba6a95179ae854c80db07ae77d70947 (diff)
downloadrneovim-caa8c06bae0ff351edb22d566a92a4b1009f191d.tar.gz
rneovim-caa8c06bae0ff351edb22d566a92a4b1009f191d.tar.bz2
rneovim-caa8c06bae0ff351edb22d566a92a4b1009f191d.zip
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
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/autocmd.txt19
1 files changed, 10 insertions, 9 deletions
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|.