mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 19:38:20 +00:00
31 lines
907 B
Lua
31 lines
907 B
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
|
|
local clear = helpers.clear
|
|
local command = helpers.command
|
|
local eq = helpers.eq
|
|
local eval = helpers.eval
|
|
|
|
if helpers.pending_win32(pending) then return end
|
|
|
|
describe('autocmd TabNew', function()
|
|
before_each(clear)
|
|
|
|
it('matches when opening any new tab', function()
|
|
command('autocmd! TabNew * let g:test = "tabnew:".tabpagenr().":".bufnr("")')
|
|
command('tabnew')
|
|
eq('tabnew:2:1', eval('g:test'))
|
|
command('tabnew test.x')
|
|
eq('tabnew:3:2', eval('g:test'))
|
|
end)
|
|
|
|
it('matches when opening a new tab for FILE', function()
|
|
local tmp_path = helpers.funcs.tempname()
|
|
command('let g:test = "foo"')
|
|
command('autocmd! TabNew ' .. tmp_path .. ' let g:test = "bar"')
|
|
command('tabnew ' .. tmp_path ..'X')
|
|
eq('foo', eval('g:test'))
|
|
command('tabnew ' .. tmp_path)
|
|
eq('bar', eval('g:test'))
|
|
end)
|
|
end)
|