mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 16:36:30 +00:00

This is the first installment of a multi-PR series significantly refactoring how highlights are being specified. The end goal is to have a base set of 20 ish most common highlights, and then specific files only need to add more groups to that as needed. As a complicating factor, we also want to migrate to the new default color scheme eventually. But by sharing a base set, that future PR will hopefully be a lot smaller since a lot of tests will be migrated just simply by updating the base set in place. As a first step, fix the anti-pattern than Screen defaults to ignoring highlights. Highlights are integral part of the screen state, not something "extra" which we only test "sometimes". For now, we still allow opt-out via the intentionally ugly screen._default_attr_ids = nil The end goal is to get rid of all of these eventually (which will be easier as part of the color scheme migration)
202 lines
5.7 KiB
Lua
202 lines
5.7 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local Screen = require('test.functional.ui.screen')
|
|
local clear, command, eq = helpers.clear, helpers.command, helpers.eq
|
|
local insert = helpers.insert
|
|
local api = helpers.api
|
|
local assert_alive = helpers.assert_alive
|
|
|
|
describe('ui/ext_tabline', function()
|
|
local screen
|
|
local event_tabs, event_curtab, event_curbuf, event_buffers
|
|
|
|
before_each(function()
|
|
clear()
|
|
screen = Screen.new(25, 5)
|
|
screen:attach({ rgb = true, ext_tabline = true })
|
|
function screen:_handle_tabline_update(curtab, tabs, curbuf, buffers)
|
|
event_curtab = curtab
|
|
event_tabs = tabs
|
|
event_curbuf = curbuf
|
|
event_buffers = buffers
|
|
end
|
|
end)
|
|
|
|
it('publishes UI events', function()
|
|
command('tabedit another-tab')
|
|
|
|
local expected_tabs = {
|
|
{ tab = 1, name = '[No Name]' },
|
|
{ tab = 2, name = 'another-tab' },
|
|
}
|
|
screen:expect {
|
|
grid = [[
|
|
^ |
|
|
{1:~ }|*3
|
|
|
|
|
]],
|
|
condition = function()
|
|
eq(2, event_curtab)
|
|
eq(expected_tabs, event_tabs)
|
|
end,
|
|
}
|
|
|
|
command('tabNext')
|
|
screen:expect {
|
|
grid = [[
|
|
^ |
|
|
{1:~ }|*3
|
|
|
|
|
]],
|
|
condition = function()
|
|
eq(1, event_curtab)
|
|
eq(expected_tabs, event_tabs)
|
|
end,
|
|
}
|
|
end)
|
|
|
|
it('buffer UI events', function()
|
|
local expected_buffers_initial = {
|
|
{ buffer = 1, name = '[No Name]' },
|
|
}
|
|
|
|
screen:expect {
|
|
grid = [[
|
|
^ |
|
|
{1:~ }|*3
|
|
|
|
|
]],
|
|
condition = function()
|
|
eq(1, event_curbuf)
|
|
eq(expected_buffers_initial, event_buffers)
|
|
end,
|
|
}
|
|
|
|
command('badd another-buffer')
|
|
command('bnext')
|
|
|
|
local expected_buffers = {
|
|
{ buffer = 1, name = '[No Name]' },
|
|
{ buffer = 2, name = 'another-buffer' },
|
|
}
|
|
screen:expect {
|
|
grid = [[
|
|
^ |
|
|
{1:~ }|*3
|
|
|
|
|
]],
|
|
condition = function()
|
|
eq(2, event_curbuf)
|
|
eq(expected_buffers, event_buffers)
|
|
end,
|
|
}
|
|
end)
|
|
end)
|
|
|
|
describe('tabline', function()
|
|
local screen
|
|
|
|
before_each(function()
|
|
clear()
|
|
screen = Screen.new(42, 5)
|
|
screen:attach()
|
|
screen:set_default_attr_ids({
|
|
[0] = { bold = true, foreground = Screen.colors.Blue }, -- NonText
|
|
[1] = { reverse = true }, -- TabLineFill
|
|
})
|
|
end)
|
|
|
|
it('redraws when tabline option is set', function()
|
|
command('set tabline=asdf')
|
|
command('set showtabline=2')
|
|
screen:expect {
|
|
grid = [[
|
|
{1:asdf }|
|
|
^ |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
command('set tabline=jkl')
|
|
screen:expect {
|
|
grid = [[
|
|
{1:jkl }|
|
|
^ |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
end)
|
|
|
|
it('click definitions do not leak memory #21765', function()
|
|
command('set tabline=%@MyClickFunc@MyClickText%T')
|
|
command('set showtabline=2')
|
|
command('redrawtabline')
|
|
end)
|
|
|
|
it('clicks work with truncated double-width label #24187', function()
|
|
insert('tab1')
|
|
command('tabnew')
|
|
insert('tab2')
|
|
command('tabprev')
|
|
api.nvim_set_option_value('tabline', '%1T口口%2Ta' .. ('b'):rep(38) .. '%999Xc', {})
|
|
screen:expect {
|
|
grid = [[
|
|
{1:<abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc }|
|
|
tab^1 |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
assert_alive()
|
|
api.nvim_input_mouse('left', 'press', '', 0, 0, 1)
|
|
screen:expect {
|
|
grid = [[
|
|
{1:<abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc }|
|
|
tab^2 |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
api.nvim_input_mouse('left', 'press', '', 0, 0, 0)
|
|
screen:expect {
|
|
grid = [[
|
|
{1:<abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc }|
|
|
tab^1 |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
api.nvim_input_mouse('left', 'press', '', 0, 0, 39)
|
|
screen:expect {
|
|
grid = [[
|
|
{1:<abbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbc }|
|
|
tab^2 |
|
|
{0:~ }|*2
|
|
|
|
|
]],
|
|
}
|
|
api.nvim_input_mouse('left', 'press', '', 0, 0, 40)
|
|
screen:expect {
|
|
grid = [[
|
|
tab^1 |
|
|
{0:~ }|*3
|
|
|
|
|
]],
|
|
}
|
|
end)
|
|
|
|
it('middle-click closes tab', function()
|
|
command('tabnew')
|
|
command('tabnew')
|
|
command('tabnew')
|
|
command('tabprev')
|
|
eq({ 3, 4 }, api.nvim_eval('[tabpagenr(), tabpagenr("$")]'))
|
|
api.nvim_input_mouse('middle', 'press', '', 0, 0, 1)
|
|
eq({ 2, 3 }, api.nvim_eval('[tabpagenr(), tabpagenr("$")]'))
|
|
api.nvim_input_mouse('middle', 'press', '', 0, 0, 20)
|
|
eq({ 2, 2 }, api.nvim_eval('[tabpagenr(), tabpagenr("$")]'))
|
|
api.nvim_input_mouse('middle', 'press', '', 0, 0, 1)
|
|
eq({ 1, 1 }, api.nvim_eval('[tabpagenr(), tabpagenr("$")]'))
|
|
end)
|
|
end)
|