diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2017-06-21 16:59:52 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-09-12 15:52:54 -0700 |
commit | e9cf515888705640ebd754483349f2bf84c32255 (patch) | |
tree | a8709dfdb9e5e6090b47fc601e6bc21350f78fac /src/nvim/auevents.lua | |
parent | 426399c2c4dd325bf00ffe1f410c1b9fd5053692 (diff) | |
download | rneovim-e9cf515888705640ebd754483349f2bf84c32255.tar.gz rneovim-e9cf515888705640ebd754483349f2bf84c32255.tar.bz2 rneovim-e9cf515888705640ebd754483349f2bf84c32255.zip |
UIAttach, UIDetach
Diffstat (limited to 'src/nvim/auevents.lua')
-rw-r--r-- | src/nvim/auevents.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index 12fc8fd02a..1505b984ad 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -96,6 +96,8 @@ return { '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) + 'UIAttach', -- after a UI attached + 'UIDetach', -- after a UI detaches 'User', -- user defined autocommand 'VimEnter', -- after starting Vim 'VimLeave', -- before exiting Vim @@ -123,5 +125,7 @@ return { TabNewEntered=true, TermClose=true, TermOpen=true, + UIAttach=true, + UIDetach=true, }, } |