diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-05-19 11:44:52 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-05-19 11:44:52 +0200 |
commit | d995825c6627dd99213aeeecef56663d4655f701 (patch) | |
tree | 9bcc5fd1f61f923d4b22867acdb2ec2d54687aec /src/nvim/auevents.lua | |
parent | e3707c312a290bb3c002f0d7657947922b6d187c (diff) | |
parent | 021c5875c13e0c4a5bab67e2e2ac50c4be653ad6 (diff) | |
download | rneovim-d995825c6627dd99213aeeecef56663d4655f701.tar.gz rneovim-d995825c6627dd99213aeeecef56663d4655f701.tar.bz2 rneovim-d995825c6627dd99213aeeecef56663d4655f701.zip |
Merge #8377 'TextChangedP autocommand'
Diffstat (limited to 'src/nvim/auevents.lua')
-rw-r--r-- | src/nvim/auevents.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index 1153314e76..f07a92ab87 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -85,7 +85,8 @@ return { 'TermOpen', -- after opening a terminal buffer 'TermResponse', -- after setting "v:termresponse" 'TextChanged', -- text was modified - 'TextChangedI', -- text was modified in Insert mode + 'TextChangedI', -- text was modified in Insert mode(no popup) + 'TextChangedP', -- text was modified in Insert mode(popup) 'TextYankPost', -- after a yank or delete was done (y, d, c) 'User', -- user defined autocommand 'VimEnter', -- after starting Vim |