mirror of
https://github.com/neovim/neovim.git
synced 2025-09-08 20:38:18 +00:00

vim-patch:partial:9.1.1084: Unable to persistently ignore events in a window and its buffers Problem: Unable to persistently ignore events in a window and its buffers. Solution: Add 'eventignorewin' option to ignore events in a window and buffer (Luuk van Baal) Add the window-local 'eventignorewin' option that is analogous to 'eventignore', but applies to a certain window and its buffers. Identify events that should be allowed in 'eventignorewin', adapt "auto_event" and "event_tab" to encode this information. Window context is not passed onto apply_autocmds_group(), and when to ignore an event is a bit ambiguous when "buf" is not "curbuf", rather than a large refactor, only ignore an event when all windows into "buf" are ignoring the event.b7147f8236
vim-patch:9.1.1102: tests: Test_WinScrolled_Resized_eiw() uses wrong filename Problem: tests: Test_WinScrolled_Resized_eiw() uses wrong filename (Luuk van Baal, after v9.1.1084) Solution: Rename the filename to something more uniquebfc7719e48
94 lines
3.1 KiB
Lua
94 lines
3.1 KiB
Lua
local t = require('test.testutil')
|
|
local n = require('test.functional.testnvim')()
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local clear = n.clear
|
|
local write_file = t.write_file
|
|
local command = n.command
|
|
local feed = n.feed
|
|
local api = n.api
|
|
local eq = t.eq
|
|
|
|
before_each(clear)
|
|
|
|
-- oldtest: Test_autocmd_invalidates_undo_on_textchanged()
|
|
it('no E440 in quickfix window when autocommand invalidates undo', function()
|
|
write_file(
|
|
'XTest_autocmd_invalidates_undo_on_textchanged',
|
|
[[
|
|
set hidden
|
|
" create quickfix list (at least 2 lines to move line)
|
|
vimgrep /u/j %
|
|
|
|
" enter quickfix window
|
|
cwindow
|
|
|
|
" set modifiable
|
|
setlocal modifiable
|
|
|
|
" set autocmd to clear quickfix list
|
|
|
|
autocmd! TextChanged <buffer> call setqflist([])
|
|
" move line
|
|
move+1
|
|
]]
|
|
)
|
|
finally(function()
|
|
os.remove('XTest_autocmd_invalidates_undo_on_textchanged')
|
|
end)
|
|
command('edit XTest_autocmd_invalidates_undo_on_textchanged')
|
|
command('so %')
|
|
feed('G')
|
|
eq('', api.nvim_get_vvar('errmsg'))
|
|
end)
|
|
|
|
-- oldtest: Test_WinScrolled_Resized_eiw()
|
|
it('WinScrolled and WinResized events can be ignored in a window', function()
|
|
local screen = Screen.new()
|
|
n.exec([[
|
|
call setline(1, ['foo']->repeat(32))
|
|
set eventignorewin=WinScrolled,WinResized
|
|
split
|
|
let [g:afile,g:resized,g:scrolled] = ['none',0,0]
|
|
au WinScrolled * let [g:afile,g:scrolled] = [expand('<afile>'),g:scrolled+1]
|
|
au WinResized * let [g:afile,g:resized] = [expand('<afile>'),g:resized+1]
|
|
]])
|
|
feed('<C-W>-')
|
|
screen:expect([[
|
|
^foo |
|
|
foo |*4
|
|
{3:[No Name] [+] }|
|
|
foo |*6
|
|
{2:[No Name] [+] }|
|
|
|
|
|
]])
|
|
feed(':echo g:afile g:resized g:scrolled<CR>')
|
|
screen:expect({ any = 'none 0 0.*' })
|
|
feed('G')
|
|
screen:expect([[
|
|
foo |*4
|
|
^foo |
|
|
{3:[No Name] [+] }|
|
|
foo |*6
|
|
{2:[No Name] [+] }|
|
|
none 0 0 |
|
|
]])
|
|
feed('gg')
|
|
screen:expect([[
|
|
^foo |
|
|
foo |*4
|
|
{3:[No Name] [+] }|
|
|
foo |*6
|
|
{2:[No Name] [+] }|
|
|
none 0 0 |
|
|
]])
|
|
feed(':echo g:afile g:resized g:scrolled')
|
|
screen:expect({ any = ':echo g:afile g:resized g:scrolled.*' })
|
|
feed('<CR>')
|
|
screen:expect({ any = 'none 0 0.*' })
|
|
feed(':set eventignorewin=<CR><C-W>w<C-W>+')
|
|
screen:expect({ any = ':set eventignorewin=.*' })
|
|
feed(':echo win_getid() g:afile g:resized g:scrolled<CR>')
|
|
screen:expect({ any = '1000 1001 1 1.*' })
|
|
end)
|