mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
e61228a214
Before calling "attach" a screen object is just a dummy container for (row, col) values whose purpose is to be sent as part of the "attach" function call anyway. Just create the screen in an attached state directly. Keep the complete (row, col, options) config together. It is still completely valid to later detach and re-attach as needed, including to another session.
87 lines
2.7 KiB
Lua
87 lines
2.7 KiB
Lua
local n = require('test.functional.testnvim')()
|
|
local Screen = require('test.functional.ui.screen')
|
|
|
|
local clear = n.clear
|
|
local exec = n.exec
|
|
local feed = n.feed
|
|
|
|
before_each(clear)
|
|
|
|
describe('tabline', function()
|
|
local screen
|
|
|
|
before_each(function()
|
|
screen = Screen.new(50, 7)
|
|
end)
|
|
|
|
-- oldtest: Test_tabline_showcmd()
|
|
it('showcmdloc=tabline works', function()
|
|
exec([[
|
|
func MyTabLine()
|
|
return '%S'
|
|
endfunc
|
|
|
|
set showcmd
|
|
set showtabline=2
|
|
set tabline=%!MyTabLine()
|
|
set showcmdloc=tabline
|
|
call setline(1, ['a', 'b', 'c'])
|
|
set foldopen+=jump
|
|
1,2fold
|
|
3
|
|
]])
|
|
|
|
feed('g')
|
|
screen:expect([[
|
|
{2:g }|
|
|
{13:+-- 2 lines: a···································}|
|
|
^c |
|
|
{1:~ }|*3
|
|
|
|
|
]])
|
|
|
|
-- typing "gg" should open the fold
|
|
feed('g')
|
|
screen:expect([[
|
|
{2: }|
|
|
^a |
|
|
b |
|
|
c |
|
|
{1:~ }|*2
|
|
|
|
|
]])
|
|
|
|
feed('<C-V>Gl')
|
|
screen:expect([[
|
|
{2:3x2 }|
|
|
{17:a} |
|
|
{17:b} |
|
|
{17:c}^ |
|
|
{1:~ }|*2
|
|
{5:-- VISUAL BLOCK --} |
|
|
]])
|
|
|
|
feed('<Esc>1234')
|
|
screen:expect([[
|
|
{2:1234 }|
|
|
a |
|
|
b |
|
|
^c |
|
|
{1:~ }|*2
|
|
|
|
|
]])
|
|
|
|
feed('<Esc>:set tabline=<CR>')
|
|
feed(':<CR>')
|
|
feed('1234')
|
|
screen:expect([[
|
|
{5: + [No Name] }{2: }{24:1234}{2: }|
|
|
a |
|
|
b |
|
|
^c |
|
|
{1:~ }|*2
|
|
: |
|
|
]])
|
|
end)
|
|
end)
|