diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2017-01-11 00:51:31 +0100 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2017-01-13 15:29:00 +0100 |
commit | bd8025727cc1ca4389af8fc690b467e2e25a3903 (patch) | |
tree | 33825f5fd609d9032d6c849d1669ada708c1f88c /src/nvim/auevents.lua | |
parent | f68663542037aaa4ae954aacae7adf2e88b151d5 (diff) | |
download | rneovim-bd8025727cc1ca4389af8fc690b467e2e25a3903.tar.gz rneovim-bd8025727cc1ca4389af8fc690b467e2e25a3903.tar.bz2 rneovim-bd8025727cc1ca4389af8fc690b467e2e25a3903.zip |
New event: DirChanged
Diffstat (limited to 'src/nvim/auevents.lua')
-rw-r--r-- | src/nvim/auevents.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index 8d891effae..6c62748aae 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -28,6 +28,7 @@ return { 'CursorHoldI', -- idem, in Insert mode 'CursorMoved', -- cursor was moved 'CursorMovedI', -- cursor was moved in Insert mode + 'DirChanged', -- directory changed 'EncodingChanged', -- after changing the 'encoding' option 'FileAppendCmd', -- append to a file using command 'FileAppendPost', -- after appending to a file @@ -101,6 +102,7 @@ return { -- List of neovim-specific events or aliases for the purpose of generating -- syntax file neovim_specific = { + DirChanged=true, TabClosed=true, TabNew=true, TabNewEntered=true, |