diff options
Diffstat (limited to 'runtime/lua/vim/_meta/options.lua')
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 9bf183a1c1..cd014978b0 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -1989,6 +1989,16 @@ vim.o.ei = vim.o.eventignore vim.go.eventignore = vim.o.eventignore vim.go.ei = vim.go.eventignore +--- Similar to 'eventignore' but applies to a particular window and its +--- buffers, for which window and buffer related autocommands can be +--- ignored indefinitely without affecting the global 'eventignore'. +--- +--- @type string +vim.o.eventignorewin = "" +vim.o.eiw = vim.o.eventignorewin +vim.wo.eventignorewin = vim.o.eventignorewin +vim.wo.eiw = vim.wo.eventignorewin + --- In Insert mode: Use the appropriate number of spaces to insert a --- <Tab>. Spaces are used in indents with the '>' and '<' commands and --- when 'autoindent' is on. To insert a real tab when 'expandtab' is |