2024-04-20 08:44:13 -07:00
|
|
|
local t = require('test.testutil')
|
|
|
|
local n = require('test.functional.testnvim')()
|
2018-08-20 09:51:25 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2024-04-20 08:44:13 -07:00
|
|
|
|
|
|
|
local assert_alive = n.assert_alive
|
|
|
|
local clear, feed = n.clear, n.feed
|
|
|
|
local source = n.source
|
|
|
|
local insert = n.insert
|
|
|
|
local api = n.api
|
|
|
|
local async_meths = n.async_meths
|
|
|
|
local command = n.command
|
|
|
|
local fn = n.fn
|
2024-04-08 02:03:20 -07:00
|
|
|
local eq = t.eq
|
|
|
|
local pcall_err = t.pcall_err
|
2024-04-20 08:44:13 -07:00
|
|
|
local exec_lua = n.exec_lua
|
|
|
|
local exec = n.exec
|
2018-08-20 09:51:25 -07:00
|
|
|
|
|
|
|
describe('ui/ext_popupmenu', function()
|
|
|
|
local screen
|
|
|
|
before_each(function()
|
|
|
|
clear()
|
|
|
|
screen = Screen.new(60, 8)
|
|
|
|
screen:attach({ rgb = true, ext_popupmenu = true })
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[1] = { bold = true, foreground = Screen.colors.Blue },
|
|
|
|
[2] = { bold = true },
|
2018-08-30 21:00:04 -07:00
|
|
|
[3] = { reverse = true },
|
|
|
|
[4] = { bold = true, reverse = true },
|
2016-06-08 02:19:33 -07:00
|
|
|
[5] = { bold = true, foreground = Screen.colors.SeaGreen },
|
|
|
|
[6] = { background = Screen.colors.WebGray },
|
|
|
|
[7] = { background = Screen.colors.LightMagenta },
|
2022-01-27 16:55:10 -07:00
|
|
|
[8] = { foreground = Screen.colors.Red },
|
2018-08-20 09:51:25 -07:00
|
|
|
})
|
|
|
|
source([[
|
|
|
|
function! TestComplete() abort
|
2016-06-08 02:19:33 -07:00
|
|
|
call complete(1, [{'word':'foo', 'abbr':'fo', 'menu':'the foo', 'info':'foo-y', 'kind':'x'}, 'bar', 'spam'])
|
2018-08-20 09:51:25 -07:00
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
]])
|
2016-06-08 02:19:33 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
local expected = {
|
|
|
|
{ 'fo', 'x', 'the foo', 'foo-y' },
|
|
|
|
{ 'bar', '', '', '' },
|
|
|
|
{ 'spam', '', '', '' },
|
|
|
|
}
|
|
|
|
|
|
|
|
it('works', function()
|
2018-08-20 09:51:25 -07:00
|
|
|
feed('o<C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2018-08-20 09:51:25 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2018-08-20 09:51:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2018-08-20 09:51:25 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = -1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2018-08-20 09:51:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
-- down moves the selection in the menu, but does not insert anything
|
|
|
|
feed('<down><down>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2018-08-20 09:51:25 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2018-08-20 09:51:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
feed('<cr>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2018-08-20 09:51:25 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
end)
|
2016-06-08 02:19:33 -07:00
|
|
|
|
|
|
|
it('can be controlled by API', function()
|
|
|
|
feed('o<C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(1, false, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(2, true, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
spam^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 2,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(0, true, true, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-w><C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(-1, false, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = -1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(1, true, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(-1, true, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = -1,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
2024-01-02 18:09:18 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(0, true, false, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
2019-03-04 02:59:44 -07:00
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2016-06-08 02:19:33 -07:00
|
|
|
}
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(-1, true, true, {})
|
2016-06-08 02:19:33 -07:00
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
command('set wildmenu')
|
|
|
|
command('set wildoptions=pum')
|
|
|
|
local expected_wildpum = {
|
|
|
|
{ 'define', '', '', '' },
|
|
|
|
{ 'jump', '', '', '' },
|
|
|
|
{ 'list', '', '', '' },
|
|
|
|
{ 'place', '', '', '' },
|
|
|
|
{ 'undefine', '', '', '' },
|
|
|
|
{ 'unplace', '', '', '' },
|
|
|
|
}
|
|
|
|
feed('<Esc>:sign <Tab>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(-1, true, false, {})
|
2022-10-17 06:00:50 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign ^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = -1,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(5, true, false, {})
|
2022-10-17 06:00:50 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign unplace^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = 5,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(-1, true, true, {})
|
2022-10-17 06:00:50 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign ^ |
|
|
|
|
]],
|
|
|
|
})
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
2022-01-10 19:45:46 -07:00
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_select_popupmenu_item(5, true, true, {})
|
2022-10-17 06:00:50 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
2023-12-09 05:42:00 -07:00
|
|
|
|*2
|
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign unplace^ |
|
|
|
|
]],
|
|
|
|
})
|
2022-01-10 19:45:46 -07:00
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
local function test_pum_select_mappings()
|
|
|
|
screen:set_option('ext_popupmenu', true)
|
|
|
|
feed('<Esc>A<C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
}
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
feed('<f1>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
spam^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 2,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
}
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
feed('<f2>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
spam^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = -1,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
}
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2022-10-17 06:00:50 -07:00
|
|
|
feed('<f3>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>:sign <Tab>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
feed('<f1>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign list^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = 2,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
feed('<f2>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign ^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected_wildpum,
|
|
|
|
pos = -1,
|
|
|
|
anchor = { 1, 7, 6 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2022-10-17 06:00:50 -07:00
|
|
|
})
|
|
|
|
|
|
|
|
feed('<f3>')
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
bar |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign jump^ |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
|
|
|
|
-- also should work for builtin popupmenu
|
|
|
|
screen:set_option('ext_popupmenu', false)
|
|
|
|
feed('<Esc>A<C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
foo^ |
|
|
|
|
{6:fo x the foo }{1: }|
|
|
|
|
{7:bar }{1: }|
|
|
|
|
{7:spam }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f1>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
spam^ |
|
|
|
|
{7:fo x the foo }{1: }|
|
|
|
|
{7:bar }{1: }|
|
|
|
|
{6:spam }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f2>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
spam^ |
|
|
|
|
{7:fo x the foo }{1: }|
|
|
|
|
{7:bar }{1: }|
|
|
|
|
{7:spam }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f3>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>:sign <Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar {6: define } |
|
|
|
|
{1:~ }{7: jump }{1: }|
|
|
|
|
{1:~ }{7: list }{1: }|
|
|
|
|
{1:~ }{7: place }{1: }|
|
|
|
|
{1:~ }{7: undefine }{1: }|
|
|
|
|
{1:~ }{7: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f1>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar {7: define } |
|
|
|
|
{1:~ }{7: jump }{1: }|
|
|
|
|
{1:~ }{6: list }{1: }|
|
|
|
|
{1:~ }{7: place }{1: }|
|
|
|
|
{1:~ }{7: undefine }{1: }|
|
|
|
|
{1:~ }{7: unplace }{1: }|
|
|
|
|
:sign list^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f2>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar {7: define } |
|
|
|
|
{1:~ }{7: jump }{1: }|
|
|
|
|
{1:~ }{7: list }{1: }|
|
|
|
|
{1:~ }{7: place }{1: }|
|
|
|
|
{1:~ }{7: undefine }{1: }|
|
|
|
|
{1:~ }{7: unplace }{1: }|
|
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f3>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
bar |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2022-10-17 06:00:50 -07:00
|
|
|
:sign jump^ |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
|
|
|
|
command('map! <f1> <cmd>call nvim_select_popupmenu_item(2,v:true,v:false,{})<cr>')
|
|
|
|
command('map! <f2> <cmd>call nvim_select_popupmenu_item(-1,v:false,v:false,{})<cr>')
|
|
|
|
command('map! <f3> <cmd>call nvim_select_popupmenu_item(1,v:false,v:true,{})<cr>')
|
|
|
|
test_pum_select_mappings()
|
|
|
|
|
|
|
|
command('unmap! <f1>')
|
|
|
|
command('unmap! <f2>')
|
|
|
|
command('unmap! <f3>')
|
|
|
|
exec_lua([[
|
|
|
|
vim.keymap.set('!', '<f1>', function() vim.api.nvim_select_popupmenu_item(2, true, false, {}) end)
|
|
|
|
vim.keymap.set('!', '<f2>', function() vim.api.nvim_select_popupmenu_item(-1, false, false, {}) end)
|
|
|
|
vim.keymap.set('!', '<f3>', function() vim.api.nvim_select_popupmenu_item(1, false, true, {}) end)
|
2022-01-27 16:55:10 -07:00
|
|
|
]])
|
2022-10-17 06:00:50 -07:00
|
|
|
test_pum_select_mappings()
|
2022-01-27 16:55:10 -07:00
|
|
|
|
|
|
|
feed('<esc>ddiaa bb cc<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc |
|
|
|
|
aa^ |
|
|
|
|
{6:aa }{1: }|
|
|
|
|
{7:bb }{1: }|
|
|
|
|
{7:cc }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-01-27 16:55:10 -07:00
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f1>')
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc |
|
|
|
|
cc^ |
|
|
|
|
{7:aa }{1: }|
|
|
|
|
{7:bb }{1: }|
|
|
|
|
{6:cc }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-01-27 16:55:10 -07:00
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 3 of 3} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f2>')
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc |
|
|
|
|
cc^ |
|
|
|
|
{7:aa }{1: }|
|
|
|
|
{7:bb }{1: }|
|
|
|
|
{7:cc }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2022-01-27 16:55:10 -07:00
|
|
|
{2:-- Keyword Local completion (^N^P) }{8:Back at original} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f3>')
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc |
|
|
|
|
bb^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2016-06-08 02:19:33 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
2019-03-04 02:59:44 -07:00
|
|
|
|
2019-07-11 20:47:20 -07:00
|
|
|
local function source_complete_month()
|
|
|
|
source([[
|
|
|
|
function! TestCompleteMonth() abort
|
|
|
|
call complete(1, ['January', 'February', 'March', 'April',
|
|
|
|
\ 'May', 'June', 'July', 'August',
|
|
|
|
\ 'September', 'October', 'November', 'December'])
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
|
|
|
|
describe('pum_set_height', function()
|
2020-03-05 00:51:02 -07:00
|
|
|
it('can set pum height', function()
|
2019-07-11 20:47:20 -07:00
|
|
|
source_complete_month()
|
|
|
|
local month_expected = {
|
|
|
|
{ 'January', '', '', '' },
|
|
|
|
{ 'February', '', '', '' },
|
|
|
|
{ 'March', '', '', '' },
|
|
|
|
{ 'April', '', '', '' },
|
|
|
|
{ 'May', '', '', '' },
|
|
|
|
{ 'June', '', '', '' },
|
|
|
|
{ 'July', '', '', '' },
|
|
|
|
{ 'August', '', '', '' },
|
|
|
|
{ 'September', '', '', '' },
|
|
|
|
{ 'October', '', '', '' },
|
|
|
|
{ 'November', '', '', '' },
|
|
|
|
{ 'December', '', '', '' },
|
|
|
|
}
|
|
|
|
local pum_height = 6
|
|
|
|
feed('o<C-r>=TestCompleteMonth()<CR>')
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_height(pum_height)
|
2019-07-11 20:47:20 -07:00
|
|
|
feed('<PageDown>')
|
|
|
|
-- pos becomes pum_height-2 because it is subtracting 2 to keep some
|
|
|
|
-- context in ins_compl_key2count()
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
January^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2019-07-11 20:47:20 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = month_expected,
|
|
|
|
pos = pum_height - 2,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2019-07-11 20:47:20 -07:00
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('an error occurs if set 0 or less', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_height(1)
|
|
|
|
eq('Expected pum height > 0', pcall_err(api.nvim_ui_pum_set_height, 0))
|
2019-07-11 20:47:20 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('an error occurs when ext_popupmenu is false', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_height(1)
|
2019-07-11 20:47:20 -07:00
|
|
|
screen:set_option('ext_popupmenu', false)
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('It must support the ext_popupmenu option', pcall_err(api.nvim_ui_pum_set_height, 1))
|
2019-07-11 20:47:20 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2020-03-05 00:51:02 -07:00
|
|
|
describe('pum_set_bounds', function()
|
|
|
|
it('can set pum bounds', function()
|
|
|
|
source_complete_month()
|
|
|
|
local month_expected = {
|
|
|
|
{ 'January', '', '', '' },
|
|
|
|
{ 'February', '', '', '' },
|
|
|
|
{ 'March', '', '', '' },
|
|
|
|
{ 'April', '', '', '' },
|
|
|
|
{ 'May', '', '', '' },
|
|
|
|
{ 'June', '', '', '' },
|
|
|
|
{ 'July', '', '', '' },
|
|
|
|
{ 'August', '', '', '' },
|
|
|
|
{ 'September', '', '', '' },
|
|
|
|
{ 'October', '', '', '' },
|
|
|
|
{ 'November', '', '', '' },
|
|
|
|
{ 'December', '', '', '' },
|
|
|
|
}
|
|
|
|
local pum_height = 6
|
|
|
|
feed('o<C-r>=TestCompleteMonth()<CR>')
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_height(pum_height)
|
2020-03-05 00:51:02 -07:00
|
|
|
-- set bounds w h r c
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_bounds(10.5, 5.2, 6.3, 7.4)
|
2020-03-05 00:51:02 -07:00
|
|
|
feed('<PageDown>')
|
|
|
|
-- pos becomes pum_height-2 because it is subtracting 2 to keep some
|
|
|
|
-- context in ins_compl_key2count()
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
January^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2020-03-05 00:51:02 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = month_expected,
|
|
|
|
pos = pum_height - 2,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2020-03-05 00:51:02 -07:00
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
2020-03-22 02:27:49 -07:00
|
|
|
it('no error occurs if row or col set less than 0', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_bounds(1.0, 1.0, 0.0, 1.5)
|
|
|
|
api.nvim_ui_pum_set_bounds(1.0, 1.0, -1.0, 0.0)
|
|
|
|
api.nvim_ui_pum_set_bounds(1.0, 1.0, 0.0, -1.0)
|
2020-03-05 00:51:02 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('an error occurs if width or height set 0 or less', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_bounds(1.0, 1.0, 0.0, 1.5)
|
|
|
|
eq('Expected width > 0', pcall_err(api.nvim_ui_pum_set_bounds, 0.0, 1.0, 1.0, 0.0))
|
|
|
|
eq('Expected height > 0', pcall_err(api.nvim_ui_pum_set_bounds, 1.0, -1.0, 1.0, 0.0))
|
2020-03-05 00:51:02 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('an error occurs when ext_popupmenu is false', function()
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_ui_pum_set_bounds(1.0, 1.0, 0.0, 1.5)
|
2020-03-05 00:51:02 -07:00
|
|
|
screen:set_option('ext_popupmenu', false)
|
2020-03-22 02:53:45 -07:00
|
|
|
eq(
|
|
|
|
'UI must support the ext_popupmenu option',
|
2024-01-12 10:59:57 -07:00
|
|
|
pcall_err(api.nvim_ui_pum_set_bounds, 1.0, 1.0, 0.0, 1.5)
|
2024-01-02 18:09:18 -07:00
|
|
|
)
|
2020-03-05 00:51:02 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-07-11 20:47:20 -07:00
|
|
|
it('<PageUP>, <PageDown> works without ui_pum_set_height', function()
|
|
|
|
source_complete_month()
|
|
|
|
local month_expected = {
|
|
|
|
{ 'January', '', '', '' },
|
|
|
|
{ 'February', '', '', '' },
|
|
|
|
{ 'March', '', '', '' },
|
|
|
|
{ 'April', '', '', '' },
|
|
|
|
{ 'May', '', '', '' },
|
|
|
|
{ 'June', '', '', '' },
|
|
|
|
{ 'July', '', '', '' },
|
|
|
|
{ 'August', '', '', '' },
|
|
|
|
{ 'September', '', '', '' },
|
|
|
|
{ 'October', '', '', '' },
|
|
|
|
{ 'November', '', '', '' },
|
|
|
|
{ 'December', '', '', '' },
|
|
|
|
}
|
|
|
|
feed('o<C-r>=TestCompleteMonth()<CR>')
|
|
|
|
feed('<PageDown>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
January^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2019-07-11 20:47:20 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = month_expected,
|
|
|
|
pos = 3,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2019-07-11 20:47:20 -07:00
|
|
|
}
|
|
|
|
feed('<PageUp>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
January^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2019-07-11 20:47:20 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = month_expected,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2019-07-11 20:47:20 -07:00
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
2019-03-04 02:59:44 -07:00
|
|
|
it('works with wildoptions=pum', function()
|
|
|
|
screen:try_resize(32, 10)
|
|
|
|
command('set wildmenu')
|
|
|
|
command('set wildoptions=pum')
|
|
|
|
|
|
|
|
local wild_expected = {
|
|
|
|
{ 'define', '', '', '' },
|
|
|
|
{ 'jump', '', '', '' },
|
|
|
|
{ 'list', '', '', '' },
|
|
|
|
{ 'place', '', '', '' },
|
|
|
|
{ 'undefine', '', '', '' },
|
|
|
|
{ 'unplace', '', '', '' },
|
|
|
|
}
|
|
|
|
|
|
|
|
feed(':sign ')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-03-04 02:59:44 -07:00
|
|
|
:sign ^ |
|
|
|
|
]])
|
2024-01-12 10:59:57 -07:00
|
|
|
eq(0, fn.wildmenumode())
|
2019-03-04 02:59:44 -07:00
|
|
|
|
|
|
|
feed('<tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-03-04 02:59:44 -07:00
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
popupmenu = { items = wild_expected, pos = 0, anchor = { 1, 9, 6 } },
|
2024-01-02 18:09:18 -07:00
|
|
|
}
|
2024-01-12 10:59:57 -07:00
|
|
|
eq(1, fn.wildmenumode())
|
2019-03-04 02:59:44 -07:00
|
|
|
|
|
|
|
feed('<left>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-03-04 02:59:44 -07:00
|
|
|
:sign ^ |
|
|
|
|
]],
|
|
|
|
popupmenu = { items = wild_expected, pos = -1, anchor = { 1, 9, 6 } },
|
2024-01-02 18:09:18 -07:00
|
|
|
}
|
2019-03-04 02:59:44 -07:00
|
|
|
|
|
|
|
feed('<left>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-03-04 02:59:44 -07:00
|
|
|
:sign unplace^ |
|
|
|
|
]],
|
|
|
|
popupmenu = { items = wild_expected, pos = 5, anchor = { 1, 9, 6 } },
|
2024-01-02 18:09:18 -07:00
|
|
|
}
|
2019-03-04 02:59:44 -07:00
|
|
|
|
|
|
|
feed('x')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-03-04 02:59:44 -07:00
|
|
|
:sign unplacex^ |
|
|
|
|
]])
|
|
|
|
feed('<esc>')
|
|
|
|
|
2019-08-14 10:07:04 -07:00
|
|
|
-- #10042: make sure shift-tab also triggers the pum
|
|
|
|
feed(':sign <S-tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2019-08-14 10:07:04 -07:00
|
|
|
:sign unplace^ |
|
|
|
|
]],
|
|
|
|
popupmenu = { items = wild_expected, pos = 5, anchor = { 1, 9, 6 } },
|
2024-01-02 18:09:18 -07:00
|
|
|
}
|
2019-08-14 10:07:04 -07:00
|
|
|
feed('<esc>')
|
2024-01-12 10:59:57 -07:00
|
|
|
eq(0, fn.wildmenumode())
|
2019-08-14 10:07:04 -07:00
|
|
|
|
2019-03-04 02:59:44 -07:00
|
|
|
-- check positioning with multibyte char in pattern
|
|
|
|
command('e långfile1')
|
|
|
|
command('sp långfile2')
|
|
|
|
feed(':b lå<tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2019-03-04 02:59:44 -07:00
|
|
|
{4:långfile2 }|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2019-03-04 02:59:44 -07:00
|
|
|
{3:långfile1 }|
|
|
|
|
:b långfile1^ |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
anchor = { 1, 9, 3 },
|
|
|
|
items = { { 'långfile1', '', '', '' }, { 'långfile2', '', '', '' } },
|
|
|
|
pos = 0,
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2019-03-04 02:59:44 -07:00
|
|
|
}
|
|
|
|
end)
|
2023-01-10 07:40:27 -07:00
|
|
|
|
|
|
|
it('does not interfere with mousemodel=popup', function()
|
|
|
|
exec([[
|
|
|
|
set mouse=a mousemodel=popup
|
|
|
|
|
|
|
|
aunmenu PopUp
|
2024-09-05 05:56:00 -07:00
|
|
|
" Delete the default MenuPopup event handler.
|
|
|
|
autocmd! nvim_popupmenu
|
2023-01-10 07:40:27 -07:00
|
|
|
menu PopUp.foo :let g:menustr = 'foo'<CR>
|
|
|
|
menu PopUp.bar :let g:menustr = 'bar'<CR>
|
|
|
|
menu PopUp.baz :let g:menustr = 'baz'<CR>
|
|
|
|
]])
|
|
|
|
feed('o<C-r>=TestComplete()<CR>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
foo^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-01-10 07:40:27 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = 0,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-01-10 07:40:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-01-10 07:40:27 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
popupmenu = {
|
|
|
|
items = expected,
|
|
|
|
pos = -1,
|
|
|
|
anchor = { 1, 1, 0 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-01-10 07:40:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
feed('<esc>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-01-10 07:40:27 -07:00
|
|
|
|
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
feed('<RightMouse><0,0>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{7:^foo } |
|
|
|
|
{7:bar }{1: }|
|
|
|
|
{7:baz }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-01-10 07:40:27 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
feed('<esc>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-01-10 07:40:27 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
end)
|
2018-08-20 09:51:25 -07:00
|
|
|
end)
|
2018-08-30 21:00:04 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
describe("builtin popupmenu 'pumblend'", function()
|
|
|
|
before_each(clear)
|
2016-06-08 02:19:33 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('RGB-color', function()
|
|
|
|
local screen = Screen.new(60, 14)
|
2019-01-20 13:23:17 -07:00
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[1] = { background = Screen.colors.Yellow },
|
|
|
|
[2] = { bold = true, reverse = true },
|
|
|
|
[3] = { bold = true, foreground = Screen.colors.Brown },
|
|
|
|
[4] = { foreground = Screen.colors.Blue1 },
|
|
|
|
[5] = { reverse = true },
|
2019-02-11 10:21:41 -07:00
|
|
|
[6] = { background = Screen.colors.Gray55, foreground = Screen.colors.Grey45 },
|
|
|
|
[7] = { background = Screen.colors.Gray55, foreground = Screen.colors.Grey0 },
|
|
|
|
[8] = { background = tonumber('0x191919'), foreground = Screen.colors.Grey0 },
|
|
|
|
[9] = { background = tonumber('0xffc1ff'), foreground = tonumber('0xe5a8e5') },
|
|
|
|
[10] = { background = tonumber('0xffc1ff'), foreground = Screen.colors.Grey0 },
|
|
|
|
[11] = { foreground = tonumber('0xffc1ff'), background = tonumber('0xe5a8e5'), bold = true },
|
|
|
|
[12] = { foreground = Screen.colors.Grey55, background = Screen.colors.Gray45, bold = true },
|
|
|
|
[13] = { background = tonumber('0xffc1e5'), foreground = Screen.colors.Grey0 },
|
|
|
|
[14] = { background = tonumber('0xffc1e5'), foreground = tonumber('0xe5a8e5') },
|
|
|
|
[15] = { background = tonumber('0xffc1ff'), foreground = tonumber('0x080202') },
|
|
|
|
[16] = { background = tonumber('0xffc1ff'), bold = true, foreground = tonumber('0xf6ace9') },
|
|
|
|
[17] = { background = tonumber('0xffc1ff'), foreground = tonumber('0xe5a8ff') },
|
|
|
|
[18] = { background = tonumber('0xe5a8e5'), foreground = tonumber('0xffc1ff') },
|
|
|
|
[19] = { background = Screen.colors.Gray45, foreground = Screen.colors.Grey55 },
|
2019-01-20 13:23:17 -07:00
|
|
|
[20] = { bold = true },
|
|
|
|
[21] = { bold = true, foreground = Screen.colors.SeaGreen4 },
|
|
|
|
[22] = { background = Screen.colors.WebGray },
|
|
|
|
[23] = { background = Screen.colors.Grey0 },
|
|
|
|
[24] = { background = Screen.colors.LightMagenta },
|
2019-02-11 10:21:41 -07:00
|
|
|
[25] = { background = Screen.colors.Gray75, foreground = Screen.colors.Grey25 },
|
|
|
|
[26] = { background = Screen.colors.Gray75, foreground = Screen.colors.Grey0 },
|
|
|
|
[27] = { background = Screen.colors.Gray50, foreground = Screen.colors.Grey0 },
|
|
|
|
[28] = { background = tonumber('0xffddff'), foreground = tonumber('0x7f5d7f') },
|
|
|
|
[29] = { background = tonumber('0xffddff'), foreground = Screen.colors.Grey0 },
|
|
|
|
[30] = { foreground = tonumber('0xffddff'), background = tonumber('0x7f5d7f'), bold = true },
|
|
|
|
[31] = { foreground = tonumber('0xffddff'), background = Screen.colors.Grey0, bold = true },
|
|
|
|
[32] = { foreground = Screen.colors.Gray75, background = Screen.colors.Grey25, bold = true },
|
|
|
|
[33] = { background = tonumber('0xffdd7f'), foreground = Screen.colors.Grey0 },
|
|
|
|
[34] = { background = tonumber('0xffdd7f'), foreground = tonumber('0x7f5d7f') },
|
|
|
|
[35] = { background = tonumber('0xffddff'), bold = true, foreground = tonumber('0x290a0a') },
|
|
|
|
[36] = { background = tonumber('0xffddff'), bold = true, foreground = tonumber('0xd27294') },
|
|
|
|
[37] = { background = tonumber('0xffddff'), foreground = tonumber('0x7f5dff') },
|
|
|
|
[38] = { background = tonumber('0x7f5d7f'), foreground = tonumber('0xffddff') },
|
|
|
|
[39] = { background = Screen.colors.Grey0, foreground = tonumber('0xffddff') },
|
|
|
|
[40] = { background = Screen.colors.Gray25, foreground = Screen.colors.Grey75 },
|
|
|
|
[41] = { background = tonumber('0xffddff'), foreground = tonumber('0x00003f') },
|
|
|
|
[42] = { foreground = tonumber('0x0c0c0c'), background = tonumber('0xe5a8e5') },
|
|
|
|
[43] = { background = tonumber('0x7f5d7f'), bold = true, foreground = tonumber('0x3f3f3f') },
|
|
|
|
[44] = { foreground = tonumber('0x3f3f3f'), background = tonumber('0x7f5d7f') },
|
2019-08-17 13:07:22 -07:00
|
|
|
[45] = { background = Screen.colors.WebGray, blend = 0 },
|
2019-01-20 13:23:17 -07:00
|
|
|
})
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:attach()
|
2019-01-20 13:23:17 -07:00
|
|
|
command('syntax on')
|
|
|
|
command('set mouse=a')
|
|
|
|
command('set pumblend=10')
|
|
|
|
insert([[
|
|
|
|
Lorem ipsum dolor sit amet, consectetur
|
|
|
|
adipisicing elit, sed do eiusmod tempor
|
|
|
|
incididunt ut labore et dolore magna aliqua.
|
|
|
|
Ut enim ad minim veniam, quis nostrud
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex
|
|
|
|
ea commodo consequat. Duis aute irure dolor in
|
|
|
|
reprehenderit in voluptate velit esse cillum
|
|
|
|
dolore eu fugiat nulla pariatur. Excepteur sint
|
|
|
|
occaecat cupidatat non proident, sunt in culpa
|
|
|
|
qui officia deserunt mollit anim id est
|
|
|
|
laborum.]])
|
|
|
|
command('match Statement /el/')
|
|
|
|
command('2match Comment /ut/')
|
|
|
|
command('1')
|
|
|
|
command('split')
|
|
|
|
command('/ol')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
^incididunt ut labore et d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
ea commodo consequat. Duis aute irure d{1:ol}or in |
|
|
|
|
{2:[No Name] [+] }|
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing {3:el}it, sed do eiusmod tempor |
|
|
|
|
incididunt {4:ut} labore et d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi {4:ut} aliquip ex |
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('Obla bla <c-x><c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla incididunt^ |
|
|
|
|
incidid{6:u}{7:incididunt}{6:re et}{8: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{9: }{10:ut}{9: minim veniam}{6:,} quis nostrud |
|
|
|
|
exercit{9:a}{10:labore}{9:llamco la}{6:b}oris nisi ut aliquip ex |
|
2019-02-11 10:21:41 -07:00
|
|
|
{2:[No Nam}{11:e}{42:et}{11:[+] }{12: }{2: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
Lorem i{9:p}{10:dolor}{13:e}{14:l}{9:or sit a}{6:m}et, consectetur |
|
|
|
|
adipisi{9:c}{10:magn}{15:a}{16:l}{9:it, sed d}{6:o} eiusmod tempor |
|
|
|
|
bla bla{9: }{10:aliqua}{9:dunt }{6: } |
|
|
|
|
incidid{9:u}{10:Ut}{9: }{17:ut}{9: labore et}{6: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{9: }{10:enim}{9:inim veniam}{6:,} quis nostrud |
|
2019-02-11 10:21:41 -07:00
|
|
|
{5:[No Nam}{18:e}{42:ad}{18:[+] }{19: }{5: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
{20:-- Keyword Local completion (^N^P) }{21:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
command('set pumblend=0')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla incididunt^ |
|
|
|
|
incidid{22: incididunt }{23: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{24: ut }{22: } quis nostrud |
|
|
|
|
exercit{24: labore }{22: }oris nisi ut aliquip ex |
|
|
|
|
{2:[No Nam}{24: et }{22: }{2: }|
|
|
|
|
Lorem i{24: dolore }{22: }et, consectetur |
|
|
|
|
adipisi{24: magna }{22: } eiusmod tempor |
|
|
|
|
bla bla{24: aliqua }{22: } |
|
|
|
|
incidid{24: Ut }{22: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{24: enim }{22: } quis nostrud |
|
|
|
|
{5:[No Nam}{24: ad }{22: }{5: }|
|
|
|
|
{20:-- Keyword Local completion (^N^P) }{21:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
command('set pumblend=50')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla incididunt^ |
|
|
|
|
incidid{25:u}{26:incididunt}{25:re et}{27: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{28: }{29:ut}{28: minim veniam}{25:,} quis nostrud |
|
|
|
|
exercit{28:a}{29:labore}{28:llamco la}{25:b}oris nisi ut aliquip ex |
|
2019-02-11 10:21:41 -07:00
|
|
|
{2:[No Nam}{30:e}{43:et}{30:[+] }{32: }{2: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
Lorem i{28:p}{29:dolor}{33:e}{34:l}{28:or sit a}{25:m}et, consectetur |
|
|
|
|
adipisi{28:c}{29:magn}{35:a}{36:l}{28:it, sed d}{25:o} eiusmod tempor |
|
|
|
|
bla bla{28: }{29:aliqua}{28:dunt }{25: } |
|
|
|
|
incidid{28:u}{29:Ut}{28: }{37:ut}{28: labore et}{25: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{28: }{29:enim}{28:inim veniam}{25:,} quis nostrud |
|
2019-02-11 10:21:41 -07:00
|
|
|
{5:[No Nam}{38:e}{44:ad}{38:[+] }{40: }{5: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
{20:-- Keyword Local completion (^N^P) }{21:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 0, 9, 40)
|
2019-01-20 13:23:17 -07:00
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla incididunt^ |
|
|
|
|
incidid{25:u}{26:incididunt}{25:re et}{27: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{28: }{29:ut}{28: minim veniam}{25:,} quis nostrud |
|
|
|
|
exercit{28:a}{29:labore}{28:llamco la}{25:b}oris nisi ut aliquip ex |
|
2019-02-11 10:21:41 -07:00
|
|
|
{2:[No Nam}{30:e}{43:et}{30:[+] }{32: }{2: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
incidid{28:u}{29:dol}{41:or}{29:e}{28:labore et}{25: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{28: }{29:magna}{28:nim veniam}{25:,} quis nostrud |
|
|
|
|
exercit{28:a}{29:aliqua}{28:llamco la}{25:b}oris nisi {4:ut} aliquip ex |
|
|
|
|
ea comm{28:o}{29:Ut}{28: consequat. D}{25:u}is a{4:ut}e irure d{1:ol}or in |
|
|
|
|
reprehe{28:n}{29:enim}{28:t in v}{34:ol}{28:upt}{25:a}te v{3:el}it esse cillum |
|
2019-04-17 13:22:26 -07:00
|
|
|
{5:[No Nam}{38:e}{44:ad}{38:[+] }{40: }{5: }|
|
|
|
|
{20:-- Keyword Local completion (^N^P) }{21:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- can disable blending for individual attribute. For instance current
|
|
|
|
-- selected item. (also tests that `hi Pmenu*` take immediate effect)
|
|
|
|
command('hi PMenuSel blend=0')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla incididunt^ |
|
2019-08-17 13:07:22 -07:00
|
|
|
incidid{45: incididunt }{27: }d{1:ol}ore magna aliqua. |
|
2019-04-17 13:22:26 -07:00
|
|
|
Ut enim{28: }{29:ut}{28: minim veniam}{25:,} quis nostrud |
|
|
|
|
exercit{28:a}{29:labore}{28:llamco la}{25:b}oris nisi ut aliquip ex |
|
|
|
|
{2:[No Nam}{30:e}{43:et}{30:[+] }{32: }{2: }|
|
|
|
|
incidid{28:u}{29:dol}{41:or}{29:e}{28:labore et}{25: }d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim{28: }{29:magna}{28:nim veniam}{25:,} quis nostrud |
|
|
|
|
exercit{28:a}{29:aliqua}{28:llamco la}{25:b}oris nisi {4:ut} aliquip ex |
|
|
|
|
ea comm{28:o}{29:Ut}{28: consequat. D}{25:u}is a{4:ut}e irure d{1:ol}or in |
|
|
|
|
reprehe{28:n}{29:enim}{28:t in v}{34:ol}{28:upt}{25:a}te v{3:el}it esse cillum |
|
2019-02-11 10:21:41 -07:00
|
|
|
{5:[No Nam}{38:e}{44:ad}{38:[+] }{40: }{5: }|
|
2019-01-20 13:23:17 -07:00
|
|
|
{20:-- Keyword Local completion (^N^P) }{21:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-e>')
|
|
|
|
screen:expect([[
|
|
|
|
Lorem ipsum d{1:ol}or sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
bla bla ^ |
|
|
|
|
incididunt ut labore et d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{2:[No Name] [+] }|
|
|
|
|
incididunt {4:ut} labore et d{1:ol}ore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi {4:ut} aliquip ex |
|
|
|
|
ea commodo consequat. Duis a{4:ut}e irure d{1:ol}or in |
|
|
|
|
reprehenderit in v{1:ol}uptate v{3:el}it esse cillum |
|
|
|
|
{5:[No Name] [+] }|
|
|
|
|
{20:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
2019-02-12 02:11:30 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('256-color (non-RGB)', function()
|
|
|
|
local screen = Screen.new(60, 8)
|
2019-02-12 02:11:30 -07:00
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[1] = { foreground = Screen.colors.Grey0, background = tonumber('0x000007') },
|
|
|
|
[2] = { foreground = tonumber('0x000055'), background = tonumber('0x000007') },
|
|
|
|
[3] = { foreground = tonumber('0x00008f'), background = Screen.colors.Grey0 },
|
|
|
|
[4] = { foreground = Screen.colors.Grey0, background = tonumber('0x0000e1') },
|
|
|
|
[5] = { foreground = tonumber('0x0000d1'), background = tonumber('0x0000e1') },
|
|
|
|
[6] = { foreground = Screen.colors.NavyBlue, background = tonumber('0x0000f8') },
|
|
|
|
[7] = { foreground = tonumber('0x0000a5'), background = tonumber('0x0000f8') },
|
|
|
|
[8] = { foreground = tonumber('0x00000c') },
|
|
|
|
[9] = { bold = true },
|
|
|
|
[10] = { foreground = tonumber('0x000002') },
|
|
|
|
})
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:attach({ rgb = false })
|
2024-05-30 17:57:47 -07:00
|
|
|
command('set pumblend=10')
|
2019-02-12 02:11:30 -07:00
|
|
|
insert([[
|
|
|
|
Lorem ipsum dolor sit amet, consectetur
|
|
|
|
adipisicing elit, sed do eiusmod tempor
|
|
|
|
incididunt ut labore et dolore magna aliqua.
|
|
|
|
Ut enim ad minim veniam, quis nostrud
|
|
|
|
laborum.]])
|
|
|
|
|
|
|
|
feed('ggOdo<c-x><c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
dolor^ |
|
|
|
|
{1:dolor}{2: ipsum dol}or sit amet, consectetur |
|
|
|
|
{4:do}{5:ipisicing eli}t, sed do eiusmod tempor |
|
|
|
|
{4:dolore}{5:dunt ut l}abore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
laborum. |
|
|
|
|
{8:~ }|
|
|
|
|
{9:-- Keyword Local completion (^N^P) }{10:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end)
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
2019-12-29 21:16:52 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
describe('builtin popupmenu', function()
|
|
|
|
before_each(clear)
|
2019-12-29 21:16:52 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
local function with_ext_multigrid(multigrid)
|
|
|
|
local screen
|
|
|
|
before_each(function()
|
|
|
|
screen = Screen.new(32, 20)
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
-- popup selected item / scrollbar track
|
2024-07-27 06:42:12 -07:00
|
|
|
s = { background = Screen.colors.Grey },
|
2023-04-27 05:19:21 -07:00
|
|
|
-- popup non-selected item
|
2024-07-27 06:42:12 -07:00
|
|
|
n = { background = Screen.colors.Plum1 },
|
2023-04-27 05:19:21 -07:00
|
|
|
-- popup scrollbar knob
|
2024-07-27 06:42:12 -07:00
|
|
|
c = { background = Screen.colors.Black },
|
2023-04-27 05:19:21 -07:00
|
|
|
[1] = { bold = true, foreground = Screen.colors.Blue },
|
|
|
|
[2] = { bold = true },
|
|
|
|
[3] = { reverse = true },
|
|
|
|
[4] = { bold = true, reverse = true },
|
|
|
|
[5] = { bold = true, foreground = Screen.colors.SeaGreen },
|
2024-07-27 06:42:12 -07:00
|
|
|
[6] = { foreground = Screen.colors.White, background = Screen.colors.Red },
|
2023-04-27 05:19:21 -07:00
|
|
|
[7] = { background = Screen.colors.Yellow }, -- Search
|
|
|
|
[8] = { foreground = Screen.colors.Red },
|
2024-04-02 02:46:48 -07:00
|
|
|
ks = { foreground = Screen.colors.Red, background = Screen.colors.Grey },
|
2024-07-27 06:42:12 -07:00
|
|
|
kn = { foreground = Screen.colors.Red, background = Screen.colors.Plum1 },
|
2024-04-02 02:46:48 -07:00
|
|
|
xs = { foreground = Screen.colors.Black, background = Screen.colors.Grey },
|
2024-07-27 06:42:12 -07:00
|
|
|
xn = { foreground = Screen.colors.White, background = Screen.colors.Plum1 },
|
2024-06-16 15:42:11 -07:00
|
|
|
ms = { foreground = Screen.colors.Blue, background = Screen.colors.Grey },
|
2024-07-27 06:42:12 -07:00
|
|
|
mn = { foreground = Screen.colors.Blue, background = Screen.colors.Plum1 },
|
2024-07-27 03:14:22 -07:00
|
|
|
ds = { foreground = Screen.colors.DarkRed, background = Screen.colors.Grey },
|
|
|
|
dn = { foreground = Screen.colors.DarkRed, background = Screen.colors.Plum1 },
|
2024-07-27 06:44:05 -07:00
|
|
|
ums = {
|
|
|
|
foreground = Screen.colors.Blue,
|
|
|
|
background = Screen.colors.Grey,
|
|
|
|
underline = true,
|
|
|
|
},
|
|
|
|
umn = {
|
|
|
|
foreground = Screen.colors.Blue,
|
|
|
|
background = Screen.colors.Plum1,
|
|
|
|
underline = true,
|
|
|
|
},
|
|
|
|
uds = {
|
|
|
|
foreground = Screen.colors.DarkRed,
|
|
|
|
background = Screen.colors.Grey,
|
|
|
|
underline = true,
|
|
|
|
},
|
|
|
|
udn = {
|
|
|
|
foreground = Screen.colors.DarkRed,
|
|
|
|
background = Screen.colors.Plum1,
|
|
|
|
underline = true,
|
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
screen:attach({ ext_multigrid = multigrid })
|
|
|
|
end)
|
2020-07-30 09:29:02 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with preview-window above', function()
|
|
|
|
feed(':ped<CR><c-w>4+')
|
|
|
|
feed('iaa bb cc dd ee ff gg hh ii jj<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------------------]|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*9
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
## grid 4
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
|
|
|
{s:aa }{c: }|
|
|
|
|
{n:bb }{c: }|
|
|
|
|
{n:cc }{c: }|
|
|
|
|
{n:dd }{c: }|
|
|
|
|
{n:ee }{c: }|
|
|
|
|
{n:ff }{c: }|
|
|
|
|
{n:gg }{s: }|
|
|
|
|
{n:hh }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 2, 0, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa^ |
|
|
|
|
{s:aa }{c: }{1: }|
|
|
|
|
{n:bb }{c: }{1: }|
|
|
|
|
{n:cc }{c: }{1: }|
|
|
|
|
{n:dd }{c: }{1: }|
|
|
|
|
{n:ee }{c: }{1: }|
|
|
|
|
{n:ff }{c: }{1: }|
|
|
|
|
{n:gg }{s: }{1: }|
|
|
|
|
{n:hh }{s: }{4: }|
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2021-12-23 17:06:27 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with preview-window below', function()
|
|
|
|
feed(':ped<CR><c-w>4+<c-w>r')
|
|
|
|
feed('iaa bb cc dd ee ff gg hh ii jj<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*9
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------------------]|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
## grid 4
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
|
|
|
{s:aa }{c: }|
|
|
|
|
{n:bb }{c: }|
|
|
|
|
{n:cc }{c: }|
|
|
|
|
{n:dd }{c: }|
|
|
|
|
{n:ee }{c: }|
|
|
|
|
{n:ff }{c: }|
|
|
|
|
{n:gg }{s: }|
|
|
|
|
{n:hh }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 2, 0, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa^ |
|
|
|
|
{s:aa }{c: }{1: }|
|
|
|
|
{n:bb }{c: }{1: }|
|
|
|
|
{n:cc }{c: }{1: }|
|
|
|
|
{n:dd }{c: }{1: }|
|
|
|
|
{n:ee }{c: }{1: }|
|
|
|
|
{n:ff }{c: }{1: }|
|
|
|
|
{n:gg }{s: }{1: }|
|
|
|
|
{n:hh }{s: }{4: }|
|
|
|
|
aa bb cc dd ee ff gg hh ii jj |
|
|
|
|
aa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2021-12-23 17:06:27 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with preview-window above and tall and inverted', function()
|
|
|
|
feed(':ped<CR><c-w>8+')
|
|
|
|
feed('iaa<cr>bb<cr>cc<cr>dd<cr>ee<cr>')
|
|
|
|
feed('ff<cr>gg<cr>hh<cr>ii<cr>jj<cr>')
|
|
|
|
feed('kk<cr>ll<cr>mm<cr>nn<cr>oo<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------------------]|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*13
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
ii |
|
|
|
|
jj |
|
|
|
|
kk |
|
|
|
|
ll |
|
|
|
|
mm |
|
|
|
|
nn |
|
|
|
|
oo |
|
|
|
|
aa^ |
|
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 15} |
|
|
|
|
## grid 4
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
## grid 5
|
|
|
|
{s:aa }{c: }|
|
|
|
|
{n:bb }{c: }|
|
|
|
|
{n:cc }{c: }|
|
|
|
|
{n:dd }{c: }|
|
|
|
|
{n:ee }{c: }|
|
|
|
|
{n:ff }{c: }|
|
|
|
|
{n:gg }{c: }|
|
|
|
|
{n:hh }{c: }|
|
|
|
|
{n:ii }{c: }|
|
|
|
|
{n:jj }{c: }|
|
|
|
|
{n:kk }{c: }|
|
|
|
|
{n:ll }{s: }|
|
|
|
|
{n:mm }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'SW', 2, 12, 0, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
{s:aa }{c: }{3:ew][+] }|
|
|
|
|
{n:bb }{c: } |
|
|
|
|
{n:cc }{c: } |
|
|
|
|
{n:dd }{c: } |
|
|
|
|
{n:ee }{c: } |
|
|
|
|
{n:ff }{c: } |
|
|
|
|
{n:gg }{c: } |
|
|
|
|
{n:hh }{c: } |
|
|
|
|
{n:ii }{c: } |
|
|
|
|
{n:jj }{c: } |
|
|
|
|
{n:kk }{c: } |
|
|
|
|
{n:ll }{s: } |
|
|
|
|
{n:mm }{s: } |
|
|
|
|
aa^ |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
{2:-- }{5:match 1 of 15} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2022-06-30 06:42:39 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with preview-window above and short and inverted', function()
|
|
|
|
feed(':ped<CR><c-w>4+')
|
|
|
|
feed('iaa<cr>bb<cr>cc<cr>dd<cr>ee<cr>')
|
|
|
|
feed('ff<cr>gg<cr>hh<cr>ii<cr>jj<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------------------]|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*9
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
ii |
|
|
|
|
jj |
|
|
|
|
aa^ |
|
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
## grid 4
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
## grid 5
|
|
|
|
{s:aa }{c: }|
|
|
|
|
{n:bb }{c: }|
|
|
|
|
{n:cc }{c: }|
|
|
|
|
{n:dd }{c: }|
|
|
|
|
{n:ee }{c: }|
|
|
|
|
{n:ff }{c: }|
|
|
|
|
{n:gg }{c: }|
|
|
|
|
{n:hh }{c: }|
|
|
|
|
{n:ii }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'SW', 2, 8, 0, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
{s:aa }{c: }{3:ew][+] }|
|
|
|
|
{n:bb }{c: } |
|
|
|
|
{n:cc }{c: } |
|
|
|
|
{n:dd }{c: } |
|
|
|
|
{n:ee }{c: } |
|
|
|
|
{n:ff }{c: } |
|
|
|
|
{n:gg }{c: } |
|
|
|
|
{n:hh }{c: } |
|
|
|
|
{n:ii }{s: } |
|
|
|
|
aa^ |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2022-06-30 06:42:39 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with preview-window below and inverted', function()
|
|
|
|
feed(':ped<CR><c-w>4+<c-w>r')
|
|
|
|
feed('iaa<cr>bb<cr>cc<cr>dd<cr>ee<cr>')
|
|
|
|
feed('ff<cr>gg<cr>hh<cr>ii<cr>jj<cr>')
|
|
|
|
feed('<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*9
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------------------]|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [Preview][+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
ii |
|
|
|
|
jj |
|
|
|
|
aa^ |
|
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
## grid 4
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
## grid 5
|
|
|
|
{s:aa }{c: }|
|
|
|
|
{n:bb }{c: }|
|
|
|
|
{n:cc }{c: }|
|
|
|
|
{n:dd }{c: }|
|
|
|
|
{n:ee }{c: }|
|
|
|
|
{n:ff }{c: }|
|
|
|
|
{n:gg }{s: }|
|
|
|
|
{n:hh }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'SW', 2, 8, 0, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
{s:aa }{c: } |
|
|
|
|
{n:bb }{c: } |
|
|
|
|
{n:cc }{c: } |
|
|
|
|
{n:dd }{c: } |
|
|
|
|
{n:ee }{c: } |
|
|
|
|
{n:ff }{c: } |
|
|
|
|
{n:gg }{s: } |
|
|
|
|
{n:hh }{s: } |
|
|
|
|
aa^ |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
aa |
|
|
|
|
bb |
|
|
|
|
cc |
|
|
|
|
dd |
|
|
|
|
ee |
|
|
|
|
ff |
|
|
|
|
gg |
|
|
|
|
hh |
|
|
|
|
{3:[No Name] [Preview][+] }|
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
if not multigrid then
|
|
|
|
-- oldtest: Test_pum_with_preview_win()
|
|
|
|
it('preview window opened during completion', function()
|
|
|
|
exec([[
|
|
|
|
funct Omni_test(findstart, base)
|
|
|
|
if a:findstart
|
|
|
|
return col(".") - 1
|
|
|
|
endif
|
|
|
|
return [#{word: "one", info: "1info"}, #{word: "two", info: "2info"}, #{word: "three", info: "3info"}]
|
|
|
|
endfunc
|
|
|
|
set omnifunc=Omni_test
|
|
|
|
set completeopt+=longest
|
|
|
|
]])
|
|
|
|
feed('Gi<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
|
|
|
{n:one }{1: }|
|
|
|
|
{n:two }{1: }|
|
|
|
|
{n:three }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*15
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- }{8:Back at original} |
|
|
|
|
]])
|
|
|
|
feed('<C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
1info |
|
2023-12-17 16:09:32 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[Scratch] [Preview] }|
|
|
|
|
one^ |
|
|
|
|
{s:one }{1: }|
|
|
|
|
{n:two }{1: }|
|
|
|
|
{n:three }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*10
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }|
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end)
|
2023-10-17 15:40:08 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_scrollbar_on_wide_char()
|
|
|
|
it('scrollbar overwrites half of double-width char below properly', function()
|
|
|
|
screen:try_resize(32, 10)
|
|
|
|
exec([[
|
|
|
|
call setline(1, ['a', ' 啊啊啊',
|
|
|
|
\ ' 哦哦哦',
|
|
|
|
\ ' 呃呃呃'])
|
|
|
|
call setline(5, range(10)->map({i, v -> 'aa' .. v .. 'bb'}))
|
|
|
|
]])
|
|
|
|
feed('A<C-X><C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
aa0bb^ |
|
|
|
|
{s:aa0bb }{c: }啊 |
|
|
|
|
{n:aa1bb }{c: } 哦 |
|
|
|
|
{n:aa2bb }{c: }呃呃 |
|
|
|
|
{n:aa3bb }{c: } |
|
|
|
|
{n:aa4bb }{c: } |
|
|
|
|
{n:aa5bb }{c: } |
|
|
|
|
{n:aa6bb }{s: } |
|
|
|
|
{n:aa7bb }{s: } |
|
|
|
|
{2:-- }{5:match 1 of 10} |
|
|
|
|
]])
|
|
|
|
end)
|
2023-04-27 05:19:21 -07:00
|
|
|
end
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-08-15 03:47:14 -07:00
|
|
|
describe('floating window preview #popup', function()
|
|
|
|
it('pum popup preview', function()
|
|
|
|
--row must > 10
|
2024-04-25 06:36:18 -07:00
|
|
|
screen:try_resize(40, 11)
|
2023-08-15 03:47:14 -07:00
|
|
|
exec([[
|
|
|
|
funct Omni_test(findstart, base)
|
|
|
|
if a:findstart
|
|
|
|
return col(".") - 1
|
|
|
|
endif
|
2024-04-25 06:36:18 -07:00
|
|
|
return [#{word: "one", info: "1info"}, #{word: "two", info: "2info"}, #{word: "looooooooooooooong"}]
|
2023-08-15 03:47:14 -07:00
|
|
|
endfunc
|
|
|
|
set omnifunc=Omni_test
|
|
|
|
set completeopt=menu,popup
|
|
|
|
|
|
|
|
funct Set_info()
|
|
|
|
let comp_info = complete_info()
|
|
|
|
if comp_info['selected'] == 2
|
2024-04-30 05:12:51 -07:00
|
|
|
call nvim__complete_set(comp_info['selected'], {"info": "3info"})
|
2023-08-15 03:47:14 -07:00
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
autocmd CompleteChanged * call Set_info()
|
|
|
|
]])
|
|
|
|
feed('Gi<C-x><C-o>')
|
|
|
|
--floating preview in right
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2024-04-25 06:36:18 -07:00
|
|
|
[2:----------------------------------------]|*10
|
|
|
|
[3:----------------------------------------]|
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 2
|
2024-04-25 06:36:18 -07:00
|
|
|
one^ |
|
|
|
|
{1:~ }|*9
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 3
|
2024-04-25 06:36:18 -07:00
|
|
|
{2:-- }{5:match 1 of 3} |
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 4
|
|
|
|
{n:1info}|
|
|
|
|
{n: }|
|
|
|
|
## grid 5
|
2024-04-25 06:36:18 -07:00
|
|
|
{s:one }|
|
|
|
|
{n:two }|
|
|
|
|
{n:looooooooooooooong }|
|
2023-08-15 03:47:14 -07:00
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 1, 0, false, 100 },
|
2024-04-25 06:36:18 -07:00
|
|
|
[4] = { 1001, 'NW', 1, 1, 19, false, 50 },
|
|
|
|
},
|
|
|
|
win_viewport = {
|
|
|
|
[2] = {
|
|
|
|
win = 1000,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 3,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
|
|
|
[4] = {
|
|
|
|
win = 1001,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 0,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-08-15 03:47:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
2024-04-25 06:36:18 -07:00
|
|
|
one^ |
|
|
|
|
{s:one }{n:1info}{1: }|
|
|
|
|
{n:two }{1: }|
|
|
|
|
{n:looooooooooooooong }{1: }|
|
|
|
|
{1:~ }|*6
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
2023-08-15 03:47:14 -07:00
|
|
|
]],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2024-04-25 06:36:18 -07:00
|
|
|
-- info window position should be adjusted when new leader add
|
|
|
|
feed('<C-P>o')
|
2023-08-15 03:47:14 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2024-04-25 06:36:18 -07:00
|
|
|
[2:----------------------------------------]|*10
|
|
|
|
[3:----------------------------------------]|
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 2
|
2024-04-25 06:36:18 -07:00
|
|
|
o^ |
|
|
|
|
{1:~ }|*9
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 3
|
2024-04-25 06:36:18 -07:00
|
|
|
{2:-- }{8:Back at original} |
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 4
|
2024-04-25 06:36:18 -07:00
|
|
|
{n:1info}|
|
2023-08-15 03:47:14 -07:00
|
|
|
{n: }|
|
|
|
|
## grid 5
|
|
|
|
{n:one }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 1, 0, false, 100 },
|
2024-04-25 06:36:18 -07:00
|
|
|
[4] = { 1001, 'NW', 1, 1, 15, false, 50 },
|
|
|
|
},
|
|
|
|
win_viewport = {
|
|
|
|
[2] = {
|
|
|
|
win = 1000,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 1,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
|
|
|
[4] = {
|
|
|
|
win = 1001,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 0,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-08-15 03:47:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
2024-04-25 06:36:18 -07:00
|
|
|
o^ |
|
|
|
|
{n:one 1info}{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }|*7
|
|
|
|
{2:-- }{8:Back at original} |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2024-04-30 05:12:51 -07:00
|
|
|
-- test nvim__complete_set_info
|
2024-04-25 06:36:18 -07:00
|
|
|
feed('<ESC>cc<C-X><C-O><C-N><C-N>')
|
|
|
|
vim.uv.sleep(10)
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
|
|
|
[2:----------------------------------------]|*10
|
|
|
|
[3:----------------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
looooooooooooooong^ |
|
|
|
|
{1:~ }|*9
|
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 3 of 3} |
|
|
|
|
## grid 5
|
|
|
|
{n:one }|
|
|
|
|
{n:two }|
|
|
|
|
{s:looooooooooooooong }|
|
|
|
|
## grid 6
|
|
|
|
{n:3info}|
|
|
|
|
{n: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
|
|
|
[5] = { -1, 'NW', 2, 1, 0, false, 100 },
|
|
|
|
[6] = { 1002, 'NW', 1, 1, 19, false, 50 },
|
|
|
|
},
|
|
|
|
win_viewport = {
|
|
|
|
[2] = {
|
|
|
|
win = 1000,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 18,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
|
|
|
[6] = {
|
|
|
|
win = 1002,
|
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 0,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
looooooooooooooong^ |
|
|
|
|
{n:one 3info}{1: }|
|
|
|
|
{n:two }{1: }|
|
|
|
|
{s:looooooooooooooong }{1: }|
|
|
|
|
{1:~ }|*6
|
|
|
|
{2:-- }{5:match 3 of 3} |
|
2023-08-15 03:47:14 -07:00
|
|
|
]],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
-- preview in left
|
|
|
|
feed('<ESC>cc')
|
|
|
|
insert(('test'):rep(5))
|
|
|
|
feed('i<C-x><C-o>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2024-04-25 06:36:18 -07:00
|
|
|
[2:----------------------------------------]|*10
|
|
|
|
[3:----------------------------------------]|
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 2
|
2024-04-25 06:36:18 -07:00
|
|
|
itesttesttesttesttesone^t |
|
|
|
|
{1:~ }|*9
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 3
|
2024-04-25 06:36:18 -07:00
|
|
|
{2:-- }{5:match 1 of 3} |
|
2023-08-15 03:47:14 -07:00
|
|
|
## grid 5
|
2024-04-25 06:36:18 -07:00
|
|
|
{s: one }|
|
|
|
|
{n: two }|
|
|
|
|
{n: looooooooooooooong }|
|
|
|
|
## grid 7
|
2023-08-15 03:47:14 -07:00
|
|
|
{n:1info}|
|
|
|
|
{n: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-04-25 06:36:18 -07:00
|
|
|
[7] = { 1003, 'NW', 1, 1, 14, false, 50 },
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 1, 19, false, 100 },
|
2023-08-15 03:47:14 -07:00
|
|
|
},
|
|
|
|
win_viewport = {
|
|
|
|
[2] = {
|
2024-01-16 06:26:21 -07:00
|
|
|
win = 1000,
|
2023-08-15 03:47:14 -07:00
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 23,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
|
|
|
},
|
2024-04-25 06:36:18 -07:00
|
|
|
[7] = {
|
|
|
|
win = 1003,
|
2023-08-15 03:47:14 -07:00
|
|
|
topline = 0,
|
|
|
|
botline = 2,
|
|
|
|
curline = 0,
|
|
|
|
curcol = 0,
|
|
|
|
linecount = 1,
|
|
|
|
sum_scroll_delta = 0,
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
|
|
|
},
|
2023-08-15 03:47:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
2024-04-25 06:36:18 -07:00
|
|
|
itesttesttesttesttesone^t |
|
|
|
|
{1:~ }{n:1info}{s: one }{1: }|
|
|
|
|
{1:~ }{n: two }{1: }|
|
|
|
|
{1:~ }{n: looooooooooooooong }{1: }|
|
|
|
|
{1:~ }|*6
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
2023-08-15 03:47:14 -07:00
|
|
|
]],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with vsplits', function()
|
|
|
|
screen:try_resize(32, 8)
|
|
|
|
insert('aaa aab aac\n')
|
|
|
|
feed(':vsplit<cr>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------]│[2:-----------]|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }{3:<Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aaa aab aac|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:vsplit |
|
|
|
|
## grid 4
|
|
|
|
aaa aab aac |
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
]],
|
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aaa aab aac │aaa aab aac|
|
|
|
|
^ │ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }│{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }{3:<Name] [+] }|
|
|
|
|
:vsplit |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
|
|
|
|
feed('ibbb a<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:--------------------]│[2:-----------]|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[No Name] [+] }{3:<Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aaa aab aac|
|
|
|
|
bbb aaa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
## grid 4
|
|
|
|
aaa aab aac |
|
|
|
|
bbb aaa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
|
|
|
{s: aaa }|
|
|
|
|
{n: aab }|
|
|
|
|
{n: aac }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 4, 2, 3, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aaa aab aac │aaa aab aac|
|
|
|
|
bbb aaa^ │bbb aaa |
|
|
|
|
{1:~ }{s: aaa }{1: }│{1:~ }|
|
|
|
|
{1:~ }{n: aab }{1: }│{1:~ }|
|
|
|
|
{1:~ }{n: aac }{1: }│{1:~ }|
|
|
|
|
{1:~ }│{1:~ }|
|
|
|
|
{4:[No Name] [+] }{3:<Name] [+] }|
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
|
|
|
|
feed('<esc><c-w><c-w>oc a<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:-----------]│[2:--------------------]|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:<Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aaa aab aac |
|
|
|
|
bbb aaa |
|
|
|
|
c aaa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
## grid 4
|
|
|
|
aaa aab aac|
|
|
|
|
bbb aaa |
|
|
|
|
c aaa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
|
|
|
{s: aaa }|
|
|
|
|
{n: aab }|
|
|
|
|
{n: aac }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 3, 1, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aaa aab aac│aaa aab aac |
|
|
|
|
bbb aaa │bbb aaa |
|
|
|
|
c aaa │c aaa^ |
|
|
|
|
{1:~ }│{1:~}{s: aaa }{1: }|
|
|
|
|
{1:~ }│{1:~}{n: aab }{1: }|
|
|
|
|
{1:~ }│{1:~}{n: aac }{1: }|
|
|
|
|
{3:<Name] [+] }{4:[No Name] [+] }|
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
|
|
|
|
feed('bcdef ccc a<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:-----------]│[2:--------------------]|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:<Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aaa aab aac |
|
|
|
|
bbb aaa |
|
|
|
|
c aaabcdef ccc aaa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 4} |
|
|
|
|
## grid 4
|
|
|
|
aaa aab aac|
|
|
|
|
bbb aaa |
|
|
|
|
c aaabcdef |
|
|
|
|
ccc aaa |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
|
|
|
{s: aaa }|
|
|
|
|
{n: aab }|
|
|
|
|
{n: aac }|
|
|
|
|
{n: aaabcdef}|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 3, 11, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aaa aab aac│aaa aab aac |
|
|
|
|
bbb aaa │bbb aaa |
|
|
|
|
c aaabcdef │c aaabcdef ccc aaa^ |
|
|
|
|
ccc aaa │{1:~ }{s: aaa }|
|
|
|
|
{1:~ }│{1:~ }{n: aab }|
|
|
|
|
{1:~ }│{1:~ }{n: aac }|
|
|
|
|
{3:<Name] [+] }{4:[No Name] [}{n: aaabcdef}|
|
|
|
|
{2:-- }{5:match 1 of 4} |
|
|
|
|
]])
|
|
|
|
end
|
2023-05-02 08:55:14 -07:00
|
|
|
|
|
|
|
feed('\n<c-x><c-n>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[4:-----------]│[2:--------------------]|*6
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:<Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
aaa aab aac |
|
|
|
|
bbb aaa |
|
|
|
|
c aaabcdef ccc aaa |
|
|
|
|
aaa^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- }{5:match 1 of 6} |
|
|
|
|
## grid 4
|
|
|
|
aaa aab aac|
|
|
|
|
bbb aaa |
|
|
|
|
c aaabcdef |
|
|
|
|
ccc aaa |
|
|
|
|
aaa |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 5
|
|
|
|
{s: aaa }{c: }|
|
|
|
|
{n: aab }{s: }|
|
|
|
|
{n: aac }{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 2, 4, -1, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-05-02 08:55:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
aaa aab aac│aaa aab aac |
|
|
|
|
bbb aaa │bbb aaa |
|
|
|
|
c aaabcdef │c aaabcdef ccc aaa |
|
|
|
|
ccc aaa │aaa^ |
|
|
|
|
aaa {s: aaa }{c: }{1: }|
|
|
|
|
{1:~ }{n: aab }{s: }{1: }|
|
|
|
|
{3:<Name] [+] }{n: aac }{s: }{4: }|
|
|
|
|
{2:-- }{5:match 1 of 6} |
|
|
|
|
]])
|
|
|
|
end
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
if not multigrid then
|
|
|
|
it('with split and scroll', function()
|
|
|
|
screen:try_resize(60, 14)
|
|
|
|
command('split')
|
|
|
|
command('set completeopt+=noinsert')
|
|
|
|
command('set mouse=a')
|
|
|
|
insert([[
|
|
|
|
Lorem ipsum dolor sit amet, consectetur
|
|
|
|
adipisicing elit, sed do eiusmod tempor
|
|
|
|
incididunt ut labore et dolore magna aliqua.
|
|
|
|
Ut enim ad minim veniam, quis nostrud
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex
|
|
|
|
ea commodo consequat. Duis aute irure dolor in
|
|
|
|
reprehenderit in voluptate velit esse cillum
|
|
|
|
dolore eu fugiat nulla pariatur. Excepteur sint
|
|
|
|
occaecat cupidatat non proident, sunt in culpa
|
|
|
|
qui officia deserunt mollit anim id est
|
|
|
|
laborum.
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:expect([[
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
dolore eu fugiat nulla pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
laborum. |
|
|
|
|
^ |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
Lorem ipsum dolor sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('ggOEst <c-x><c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
Est ^ |
|
|
|
|
L{n: sunt }{s: }sit amet, consectetur |
|
|
|
|
a{n: in }{s: }sed do eiusmod tempor |
|
|
|
|
i{n: culpa }{s: }re et dolore magna aliqua. |
|
|
|
|
U{n: qui }{s: }eniam, quis nostrud |
|
|
|
|
e{n: officia }{s: }co laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: deserunt }{s: }{4: }|
|
|
|
|
Est{n: mollit }{s: } |
|
|
|
|
L{n: anim }{s: }sit amet, consectetur |
|
|
|
|
a{n: id }{s: }sed do eiusmod tempor |
|
|
|
|
i{n: est }{s: }re et dolore magna aliqua. |
|
|
|
|
U{n: laborum }{c: }eniam, quis nostrud |
|
|
|
|
{3:[No}{s: Est }{c: }{3: }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 0, 9, 40)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est ^ |
|
|
|
|
L{n: sunt }{s: }sit amet, consectetur |
|
|
|
|
a{n: in }{s: }sed do eiusmod tempor |
|
|
|
|
i{n: culpa }{s: }re et dolore magna aliqua. |
|
|
|
|
U{n: qui }{s: }eniam, quis nostrud |
|
|
|
|
e{n: officia }{s: }co laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: deserunt }{s: }{4: }|
|
|
|
|
i{n: mollit }{s: }re et dolore magna aliqua. |
|
|
|
|
U{n: anim }{s: }eniam, quis nostrud |
|
|
|
|
e{n: id }{s: }co laboris nisi ut aliquip ex |
|
|
|
|
e{n: est }{s: }at. Duis aute irure dolor in |
|
|
|
|
r{n: laborum }{c: }oluptate velit esse cillum |
|
|
|
|
{3:[No}{s: Est }{c: }{3: }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('e')
|
|
|
|
screen:expect([[
|
|
|
|
Est e^ |
|
|
|
|
L{n: elit } sit amet, consectetur |
|
|
|
|
a{n: eiusmod } sed do eiusmod tempor |
|
|
|
|
i{n: et }ore et dolore magna aliqua. |
|
|
|
|
U{n: enim }veniam, quis nostrud |
|
|
|
|
e{n: exercitation }mco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: ex }{4: }|
|
|
|
|
i{n: ea }ore et dolore magna aliqua. |
|
|
|
|
U{n: esse }veniam, quis nostrud |
|
|
|
|
e{n: eu }mco laboris nisi ut aliquip ex |
|
|
|
|
e{s: est }uat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'up', '', 0, 9, 40)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est e^ |
|
|
|
|
L{n: elit } sit amet, consectetur |
|
|
|
|
a{n: eiusmod } sed do eiusmod tempor |
|
|
|
|
i{n: et }ore et dolore magna aliqua. |
|
|
|
|
U{n: enim }veniam, quis nostrud |
|
|
|
|
e{n: exercitation }mco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: ex }{4: }|
|
|
|
|
Est{n: ea } |
|
|
|
|
L{n: esse } sit amet, consectetur |
|
|
|
|
a{n: eu } sed do eiusmod tempor |
|
|
|
|
i{s: est }ore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('s')
|
|
|
|
screen:expect([[
|
|
|
|
Est es^ |
|
|
|
|
L{n: esse } sit amet, consectetur |
|
|
|
|
a{s: est } sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
Est es |
|
|
|
|
Lorem ipsum dolor sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 0, 9, 40)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est es^ |
|
|
|
|
L{n: esse } sit amet, consectetur |
|
|
|
|
a{s: est } sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
ea commodo consequat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<bs>')
|
|
|
|
screen:expect([[
|
|
|
|
Est e^ |
|
|
|
|
L{n: elit } sit amet, consectetur |
|
|
|
|
a{n: eiusmod } sed do eiusmod tempor |
|
|
|
|
i{n: et }ore et dolore magna aliqua. |
|
|
|
|
U{n: enim }veniam, quis nostrud |
|
|
|
|
e{n: exercitation }mco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: ex }{4: }|
|
|
|
|
i{n: ea }ore et dolore magna aliqua. |
|
|
|
|
U{n: esse }veniam, quis nostrud |
|
|
|
|
e{n: eu }mco laboris nisi ut aliquip ex |
|
|
|
|
e{s: est }uat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 65} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
Est eu^ |
|
|
|
|
L{n: elit } sit amet, consectetur |
|
|
|
|
a{n: eiusmod } sed do eiusmod tempor |
|
|
|
|
i{n: et }ore et dolore magna aliqua. |
|
|
|
|
U{n: enim }veniam, quis nostrud |
|
|
|
|
e{n: exercitation }mco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: ex }{4: }|
|
|
|
|
i{n: ea }ore et dolore magna aliqua. |
|
|
|
|
U{n: esse }veniam, quis nostrud |
|
|
|
|
e{s: eu }mco laboris nisi ut aliquip ex |
|
|
|
|
e{n: est }uat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 22 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 0, 9, 40)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est eu^ |
|
|
|
|
L{n: elit } sit amet, consectetur |
|
|
|
|
a{n: eiusmod } sed do eiusmod tempor |
|
|
|
|
i{n: et }ore et dolore magna aliqua. |
|
|
|
|
U{n: enim }veniam, quis nostrud |
|
|
|
|
e{n: exercitation }mco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No}{n: ex }{4: }|
|
|
|
|
e{n: ea }uat. Duis aute irure dolor in |
|
|
|
|
r{n: esse }voluptate velit esse cillum |
|
|
|
|
d{s: eu }nulla pariatur. Excepteur sint |
|
|
|
|
o{n: est }t non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 22 of 65} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(4, { 'ea', 'eeeeeeeeeeeeeeeeee', 'ei', 'eo', 'eu', 'ey', 'eå', 'eä', 'eö' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est eu^ |
|
|
|
|
{s: ea }t amet, consectetur |
|
|
|
|
{n: eeeeeeeeeeeeeeeeee }d do eiusmod tempor |
|
|
|
|
{n: ei } et dolore magna aliqua. |
|
|
|
|
{n: eo }iam, quis nostrud |
|
|
|
|
{n: eu } laboris nisi ut aliquip ex |
|
|
|
|
{4:[N}{n: ey }{4: }|
|
|
|
|
{n: eå }. Duis aute irure dolor in |
|
|
|
|
{n: eä }uptate velit esse cillum |
|
|
|
|
{n: eö }la pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- Keyword Local completion (^N^P) }{5:match 1 of 9} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(4, { 'ea', 'eee', 'ei', 'eo', 'eu', 'ey', 'eå', 'eä', 'eö' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Est eu^ |
|
|
|
|
{s: ea }r sit amet, consectetur |
|
|
|
|
{n: eee }, sed do eiusmod tempor |
|
|
|
|
{n: ei }bore et dolore magna aliqua. |
|
|
|
|
{n: eo } veniam, quis nostrud |
|
|
|
|
{n: eu }amco laboris nisi ut aliquip ex |
|
|
|
|
{4:[N}{n: ey }{4: }|
|
|
|
|
{n: eå }quat. Duis aute irure dolor in |
|
|
|
|
{n: eä } voluptate velit esse cillum |
|
|
|
|
{n: eö } nulla pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
Esteee^ |
|
|
|
|
{n: ea }r sit amet, consectetur |
|
|
|
|
{s: eee }, sed do eiusmod tempor |
|
|
|
|
{n: ei }bore et dolore magna aliqua. |
|
|
|
|
{n: eo } veniam, quis nostrud |
|
|
|
|
{n: eu }amco laboris nisi ut aliquip ex |
|
|
|
|
{4:[N}{n: ey }{4: }|
|
|
|
|
{n: eå }quat. Duis aute irure dolor in |
|
|
|
|
{n: eä } voluptate velit esse cillum |
|
|
|
|
{n: eö } nulla pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(6, { 'foo', 'bar' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
Esteee^ |
|
|
|
|
Lo{s: foo }sit amet, consectetur |
|
|
|
|
ad{n: bar }sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
ea commodo consequat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
dolore eu fugiat nulla pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-y>')
|
|
|
|
screen:expect([[
|
|
|
|
Esteefoo^ |
|
|
|
|
Lorem ipsum dolor sit amet, consectetur |
|
|
|
|
adipisicing elit, sed do eiusmod tempor |
|
|
|
|
incididunt ut labore et dolore magna aliqua. |
|
|
|
|
Ut enim ad minim veniam, quis nostrud |
|
|
|
|
exercitation ullamco laboris nisi ut aliquip ex |
|
|
|
|
{4:[No Name] [+] }|
|
|
|
|
ea commodo consequat. Duis aute irure dolor in |
|
|
|
|
reprehenderit in voluptate velit esse cillum |
|
|
|
|
dolore eu fugiat nulla pariatur. Excepteur sint |
|
|
|
|
occaecat cupidatat non proident, sunt in culpa |
|
|
|
|
qui officia deserunt mollit anim id est |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can be moved due to wrap or resize', function()
|
|
|
|
feed('isome long prefix before the ')
|
|
|
|
command('set completeopt+=noinsert,noselect')
|
|
|
|
command('set linebreak')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(29, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the ^ |
|
|
|
|
{1:~ }{n: word }|
|
|
|
|
{1:~ }{n: choice}|
|
|
|
|
{1:~ }{n: text }|
|
|
|
|
{1:~ }{n: thing }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*14
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the |
|
|
|
|
thing^ |
|
|
|
|
{n:word }{1: }|
|
|
|
|
{n:choice }{1: }|
|
|
|
|
{n:text }{1: }|
|
|
|
|
{s:thing }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*13
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the text|
|
|
|
|
{1:^~ }{n: word }|
|
|
|
|
{1:~ }{n: choice}|
|
|
|
|
{1:~ }{s: text }|
|
|
|
|
{1:~ }{n: thing }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*14
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(30, 8)
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the |
|
|
|
|
text^ |
|
|
|
|
{n:word }{1: }|
|
|
|
|
{n:choice }{1: }|
|
|
|
|
{s:text }{1: }|
|
|
|
|
{n:thing }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(50, 8)
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the text^ |
|
|
|
|
{1:~ }{n: word }{1: }|
|
|
|
|
{1:~ }{n: choice }{1: }|
|
|
|
|
{1:~ }{s: text }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(25, 10)
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before |
|
|
|
|
the text^ |
|
|
|
|
{1:~ }{n: word }{1: }|
|
|
|
|
{1:~ }{n: choice }{1: }|
|
|
|
|
{1:~ }{s: text }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(12, 5)
|
|
|
|
screen:expect([[
|
|
|
|
some long |
|
|
|
|
prefix |
|
|
|
|
bef{n: word } |
|
|
|
|
tex{n: }^ |
|
2023-09-30 01:31:55 -07:00
|
|
|
{2:-- INSERT --}|
|
2023-04-27 05:19:21 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- can't draw the pum, but check we don't crash
|
|
|
|
screen:try_resize(12, 2)
|
|
|
|
screen:expect([[
|
2023-04-26 19:54:50 -07:00
|
|
|
{1:<<<}t^ |
|
2023-09-30 01:31:55 -07:00
|
|
|
{2:-- INSERT --}|
|
2023-04-27 05:19:21 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- but state is preserved, pum reappears
|
|
|
|
screen:try_resize(20, 8)
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix |
|
|
|
|
before the text^ |
|
|
|
|
{1:~ }{n: word }{1: }|
|
|
|
|
{1:~ }{n: choice }{1: }|
|
|
|
|
{1:~ }{s: text }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('with VimResized autocmd', function()
|
|
|
|
feed('isome long prefix before the ')
|
|
|
|
command('set completeopt+=noinsert,noselect')
|
|
|
|
command('autocmd VimResized * redraw!')
|
|
|
|
command('set linebreak')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(29, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the ^ |
|
|
|
|
{1:~ }{n: word }|
|
|
|
|
{1:~ }{n: choice}|
|
|
|
|
{1:~ }{n: text }|
|
|
|
|
{1:~ }{n: thing }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*14
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(16, 10)
|
|
|
|
screen:expect([[
|
|
|
|
some long |
|
|
|
|
prefix before |
|
|
|
|
the ^ |
|
|
|
|
{1:~ }{n: word }|
|
|
|
|
{1:~ }{n: choice }|
|
|
|
|
{1:~ }{n: text }|
|
|
|
|
{1:~ }{n: thing }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('with rightleft window', function()
|
|
|
|
command('set rl wildoptions+=pum')
|
|
|
|
feed('isome rightleft ')
|
|
|
|
screen:expect([[
|
|
|
|
^ tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*18
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
command('set completeopt+=noinsert,noselect')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(16, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
^ tfelthgir emos|
|
2023-05-02 08:55:14 -07:00
|
|
|
{1: }{n: drow }{1: ~}|
|
|
|
|
{1: }{n: eciohc }{1: ~}|
|
|
|
|
{1: }{n: txet }{1: ~}|
|
|
|
|
{1: }{n: gniht }{1: ~}|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*14
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
^ drow tfelthgir emos|
|
2023-05-02 08:55:14 -07:00
|
|
|
{1: }{s: drow }{1: ~}|
|
|
|
|
{1: }{n: eciohc }{1: ~}|
|
|
|
|
{1: }{n: txet }{1: ~}|
|
|
|
|
{1: }{n: gniht }{1: ~}|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*14
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-y>')
|
|
|
|
screen:expect([[
|
|
|
|
^ drow tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*18
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- not rightleft on the cmdline
|
|
|
|
feed('<esc>:sign ')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
drow tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*18
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign ^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
|
2024-06-15 07:37:48 -07:00
|
|
|
-- oldtest: Test_wildmenu_pum_rightleft()
|
2023-04-27 05:19:21 -07:00
|
|
|
feed('<tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
drow tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*12
|
2023-04-27 05:19:21 -07:00
|
|
|
{1: }{s: define }{1: ~}|
|
|
|
|
{1: }{n: jump }{1: ~}|
|
|
|
|
{1: }{n: list }{1: ~}|
|
|
|
|
{1: }{n: place }{1: ~}|
|
|
|
|
{1: }{n: undefine }{1: ~}|
|
|
|
|
{1: }{n: unplace }{1: ~}|
|
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
end
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('with rightleft vsplits', function()
|
2023-05-02 10:13:03 -07:00
|
|
|
screen:try_resize(40, 6)
|
2023-04-27 05:19:21 -07:00
|
|
|
command('set rightleft')
|
|
|
|
command('rightbelow vsplit')
|
2023-05-02 10:13:03 -07:00
|
|
|
command('set completeopt+=noinsert,noselect')
|
|
|
|
command('set pumheight=2')
|
2023-04-27 05:19:21 -07:00
|
|
|
feed('isome rightleft ')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(16, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:-------------------]│[4:--------------------]|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:----------------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
|
|
|
^ tfelthgir emos|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 5
|
2023-05-02 10:13:03 -07:00
|
|
|
{c: }{n: drow }|
|
|
|
|
{s: }{n: eciohc }|
|
2023-04-27 05:19:21 -07:00
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 4, 1, -11, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
tfelthgir emos│ ^ tfelthgir emos|
|
2023-05-02 10:13:03 -07:00
|
|
|
{1: }{c: }{n: drow }{1: ~}|
|
|
|
|
{1: }{s: }{n: eciohc }{1: ~}|
|
2023-04-27 05:19:21 -07:00
|
|
|
{1: ~}│{1: ~}|
|
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
2023-05-02 08:55:14 -07:00
|
|
|
feed('<C-E><CR>')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(1, { 'word', 'choice', 'text', 'thing' })
|
2023-05-02 08:55:14 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:-------------------]│[4:--------------------]|*4
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:----------------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
tfelthgir emos|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
|
|
|
tfelthgir emos|
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 5
|
2023-05-02 10:13:03 -07:00
|
|
|
{c: }{n: drow}|
|
|
|
|
{s: }{n: eciohc}|
|
2023-05-02 08:55:14 -07:00
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'NW', 4, 2, 4, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-05-02 08:55:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
tfelthgir emos│ tfelthgir emos|
|
|
|
|
│ ^ |
|
2023-05-02 10:13:03 -07:00
|
|
|
{1: ~}│{1: }{c: }{n: drow}|
|
|
|
|
{1: ~}│{1: }{s: }{n: eciohc}|
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
feed('<C-E>')
|
2024-01-15 09:10:51 -07:00
|
|
|
async_meths.nvim_call_function('input', { '', '', 'sign' })
|
2023-05-02 08:55:14 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:-------------------]│[4:--------------------]|*4
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:----------------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
tfelthgir emos|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 3
|
|
|
|
^ |
|
|
|
|
## grid 4
|
|
|
|
tfelthgir emos|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
]],
|
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
tfelthgir emos│ tfelthgir emos|
|
|
|
|
│ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}│{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
^ |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
command('set wildoptions+=pum')
|
|
|
|
feed('<Tab>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:-------------------]│[4:--------------------]|*4
|
2023-05-02 08:55:14 -07:00
|
|
|
{3:[No Name] [+] }{4:[No Name] [+] }|
|
|
|
|
[3:----------------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
tfelthgir emos|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 3
|
|
|
|
define^ |
|
|
|
|
## grid 4
|
|
|
|
tfelthgir emos|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1: ~}|*2
|
2023-05-02 08:55:14 -07:00
|
|
|
## grid 5
|
2023-05-02 10:13:03 -07:00
|
|
|
{s:define }{c: }|
|
|
|
|
{n:jump }{s: }|
|
2023-05-02 08:55:14 -07:00
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[5] = { -1, 'SW', 1, 5, 0, false, 250 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-05-02 08:55:14 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
tfelthgir emos│ tfelthgir emos|
|
2023-05-02 10:13:03 -07:00
|
|
|
│ |
|
|
|
|
{1: ~}│{1: ~}|
|
|
|
|
{s:define }{c: }{1: ~}│{1: ~}|
|
|
|
|
{n:jump }{s: }{3: }{4:[No Name] [+] }|
|
2023-05-02 08:55:14 -07:00
|
|
|
define^ |
|
|
|
|
]])
|
|
|
|
end
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
if not multigrid then
|
|
|
|
it('with multiline messages', function()
|
|
|
|
screen:try_resize(40, 8)
|
|
|
|
feed('ixx<cr>')
|
|
|
|
command('imap <f2> <cmd>echoerr "very"\\|echoerr "much"\\|echoerr "error"<cr>')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(1, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
xx |
|
|
|
|
word^ |
|
|
|
|
{s:word }{1: }|
|
|
|
|
{n:choice }{1: }|
|
|
|
|
{n:text }{1: }|
|
|
|
|
{n:thing }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<f2>')
|
|
|
|
screen:expect([[
|
|
|
|
xx |
|
|
|
|
word |
|
|
|
|
{s:word }{1: }|
|
|
|
|
{4: }|
|
|
|
|
{6:very} |
|
|
|
|
{6:much} |
|
|
|
|
{6:error} |
|
|
|
|
{5:Press ENTER or type command to continue}^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<cr>')
|
|
|
|
screen:expect([[
|
|
|
|
xx |
|
|
|
|
word^ |
|
|
|
|
{s:word }{1: }|
|
|
|
|
{n:choice }{1: }|
|
|
|
|
{n:text }{1: }|
|
|
|
|
{n:thing }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-n>')
|
|
|
|
screen:expect([[
|
|
|
|
xx |
|
|
|
|
choice^ |
|
|
|
|
{n:word }{1: }|
|
|
|
|
{s:choice }{1: }|
|
|
|
|
{n:text }{1: }|
|
|
|
|
{n:thing }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
command('split')
|
|
|
|
screen:expect([[
|
|
|
|
xx |
|
|
|
|
choice^ |
|
|
|
|
{n:word }{1: }|
|
|
|
|
{s:choice }{4: }|
|
|
|
|
{n:text } |
|
|
|
|
{n:thing } |
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 0, 6, 15)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
xx |
|
|
|
|
choice^ |
|
|
|
|
{n:word }{1: }|
|
|
|
|
{s:choice }{4: }|
|
|
|
|
{n:text } |
|
|
|
|
{n:thing }{1: }|
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]],
|
|
|
|
unchanged = true,
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('with kind, menu and abbr attributes', function()
|
|
|
|
screen:try_resize(40, 8)
|
|
|
|
feed('ixx ')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(4, {
|
2023-04-27 05:19:21 -07:00
|
|
|
{ word = 'wordey', kind = 'x', menu = 'extrainfo' },
|
|
|
|
'thing',
|
|
|
|
{ word = 'secret', abbr = 'sneaky', menu = 'bar' },
|
|
|
|
})
|
|
|
|
screen:expect([[
|
|
|
|
xx wordey^ |
|
|
|
|
{1:~ }{s: wordey x extrainfo }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
|
|
|
{1:~ }{n: sneaky bar }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
xx ^ |
|
|
|
|
{1:~ }{n: wordey x extrainfo }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
|
|
|
{1:~ }{n: sneaky bar }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<c-p>')
|
|
|
|
screen:expect([[
|
|
|
|
xx secret^ |
|
|
|
|
{1:~ }{n: wordey x extrainfo }{1: }|
|
|
|
|
{1:~ }{n: thing }{1: }|
|
|
|
|
{1:~ }{s: sneaky bar }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<esc>')
|
|
|
|
screen:expect([[
|
|
|
|
xx secre^t |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('wildoptions=pum', function()
|
|
|
|
screen:try_resize(32, 10)
|
|
|
|
command('set wildmenu')
|
|
|
|
command('set wildoptions=pum')
|
|
|
|
command('set shellslash')
|
|
|
|
command('cd test/functional/fixtures/wildpum')
|
|
|
|
|
|
|
|
feed(':sign ')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Right><Right>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{s: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign list^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{s: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign place^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<C-P>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{s: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign list^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Left>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{s: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign jump^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- pressing <C-E> should end completion and go back to the original match
|
|
|
|
feed('<C-E>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- pressing <C-Y> should select the current match and end completion
|
|
|
|
feed('<Tab><C-P><C-P><C-Y>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- showing popup menu in different columns in the cmdline
|
|
|
|
feed('<C-U>sign define <Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2024-07-06 16:21:14 -07:00
|
|
|
{1:~ }|
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: culhl= }{1: }|
|
|
|
|
{1:~ }{n: icon= }{1: }|
|
|
|
|
{1:~ }{n: linehl= }{1: }|
|
|
|
|
{1:~ }{n: numhl= }{1: }|
|
2024-07-06 16:21:14 -07:00
|
|
|
{1:~ }{n: priority= }{1: }|
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: text= }{1: }|
|
|
|
|
{1:~ }{n: texthl= }{1: }|
|
|
|
|
:sign define culhl=^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Space><Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2024-07-06 16:21:14 -07:00
|
|
|
{1:~ }|
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: culhl= }{1: }|
|
|
|
|
{1:~ }{n: icon= }{1: }|
|
|
|
|
{1:~ }{n: linehl= }{1: }|
|
|
|
|
{1:~ }{n: numhl= }{1: }|
|
2024-07-06 16:21:14 -07:00
|
|
|
{1:~ }{n: priority= }{1: }|
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: text= }{1: }|
|
|
|
|
{1:~ }{n: texthl= }{1: }|
|
|
|
|
:sign define culhl= culhl=^ |
|
|
|
|
]])
|
|
|
|
|
2023-10-17 06:42:34 -07:00
|
|
|
feed('<C-U>e Xnamedi<Tab><Tab>')
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-10-17 06:42:34 -07:00
|
|
|
{1:~ }{s: XdirA/ }{1: }|
|
|
|
|
{1:~ }{n: XfileA }{1: }|
|
|
|
|
:e Xnamedir/XdirA/^ |
|
2023-04-27 05:19:21 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <Down> on a directory name should go into that directory
|
|
|
|
feed('<Down>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-10-17 06:42:34 -07:00
|
|
|
{1:~ }{s: XdirB/ }{1: }|
|
|
|
|
{1:~ }{n: XfileB }{1: }|
|
|
|
|
:e Xnamedir/XdirA/XdirB/^ |
|
2023-04-27 05:19:21 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <Up> on a directory name should go to the parent directory
|
|
|
|
feed('<Up>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-10-17 06:42:34 -07:00
|
|
|
{1:~ }{s: XdirA/ }{1: }|
|
|
|
|
{1:~ }{n: XfileA }{1: }|
|
|
|
|
:e Xnamedir/XdirA/^ |
|
2023-04-27 05:19:21 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <C-A> when the popup menu is displayed should list all the
|
|
|
|
-- matches and remove the popup menu
|
|
|
|
feed(':<C-U>sign <Tab><C-A>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
:sign define jump list place und|
|
|
|
|
efine unplace^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <Left> after that should move the cursor
|
|
|
|
feed('<Left>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
:sign define jump list place und|
|
|
|
|
efine unplac^e |
|
|
|
|
]])
|
|
|
|
feed('<End>')
|
|
|
|
|
|
|
|
-- Pressing <C-D> when the popup menu is displayed should remove the popup
|
|
|
|
-- menu
|
|
|
|
feed('<C-U>sign <Tab><C-D>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
:sign define |
|
|
|
|
define |
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <S-Tab> should open the popup menu with the last entry selected
|
|
|
|
feed('<C-U><CR>:sign <S-Tab><C-P>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{s: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign undefine^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <Esc> should close the popup menu and cancel the cmd line
|
|
|
|
feed('<C-U><CR>:sign <Tab><Esc>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Typing a character when the popup is open, should close the popup
|
|
|
|
feed(':sign <Tab>x')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign definex^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- When the popup is open, entering the cmdline window should close the popup
|
|
|
|
feed('<C-U>sign <Tab><C-F>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{3:[No Name] }|
|
|
|
|
{1::}sign define |
|
2024-04-02 04:08:03 -07:00
|
|
|
{1::}sign define^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:[Command Line] }|
|
|
|
|
:sign define |
|
|
|
|
]])
|
|
|
|
feed(':q<CR>')
|
|
|
|
|
|
|
|
-- After the last popup menu item, <C-N> should show the original string
|
|
|
|
feed(':sign u<Tab><C-N><C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign u^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Use the popup menu for the command name
|
|
|
|
feed('<C-U>bu<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{s: bufdo }{1: }|
|
|
|
|
{n: buffer }{1: }|
|
|
|
|
{n: buffers }{1: }|
|
|
|
|
{n: bunload }{1: }|
|
|
|
|
:bufdo^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <BS> should remove the popup menu and erase the last character
|
|
|
|
feed('<C-E><C-U>sign <Tab><BS>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign defin^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <C-W> should remove the popup menu and erase the previous word
|
|
|
|
feed('<C-E><C-U>sign <Tab><C-W>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <C-U> should remove the popup menu and erase the entire line
|
|
|
|
feed('<C-E><C-U>sign <Tab><C-U>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Using <C-E> to cancel the popup menu and then pressing <Up> should recall
|
|
|
|
-- the cmdline from history
|
|
|
|
feed('sign xyz<Esc>:sign <Tab><C-E><Up>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign xyz^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<esc>')
|
|
|
|
|
|
|
|
-- Check "list" still works
|
|
|
|
command('set wildmode=longest,list')
|
|
|
|
feed(':cn<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
:cn |
|
|
|
|
cnewer cnoreabbrev |
|
|
|
|
cnext cnoremap |
|
|
|
|
cnfile cnoremenu |
|
|
|
|
:cn^ |
|
|
|
|
]])
|
|
|
|
feed('s')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
:cn |
|
|
|
|
cnewer cnoreabbrev |
|
|
|
|
cnext cnoremap |
|
|
|
|
cnfile cnoremenu |
|
|
|
|
:cns^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<esc>')
|
|
|
|
command('set wildmode=full')
|
|
|
|
|
|
|
|
-- Tests a directory name contained full-width characters.
|
|
|
|
feed(':e あいう/<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: 123 }{1: }|
|
|
|
|
{1:~ }{n: abc }{1: }|
|
|
|
|
{1:~ }{n: xyz }{1: }|
|
|
|
|
:e あいう/123^ |
|
|
|
|
]])
|
|
|
|
feed('<Esc>')
|
|
|
|
|
|
|
|
-- Pressing <PageDown> should scroll the menu downward
|
|
|
|
feed(':sign <Tab><PageDown>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{s: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign undefine^ |
|
|
|
|
]])
|
|
|
|
feed('<PageDown>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{s: unplace }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
feed('<PageDown>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
feed('<PageDown>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
feed('<C-U>sign <Tab><Right><Right><PageDown>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{s: unplace }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Pressing <PageUp> should scroll the menu upward
|
|
|
|
feed('<C-U>sign <Tab><PageUp>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign ^ |
|
|
|
|
]])
|
|
|
|
feed('<PageUp>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{s: unplace }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
feed('<PageUp>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{s: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign jump^ |
|
|
|
|
]])
|
|
|
|
feed('<PageUp>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
2023-10-17 06:42:34 -07:00
|
|
|
-- pressing <C-E> to end completion should work in middle of the line too
|
|
|
|
feed('<Esc>:set wildchazz<Left><Left><Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-10-17 06:42:34 -07:00
|
|
|
{1:~ }{s: wildchar }{1: }|
|
|
|
|
{1:~ }{n: wildcharm }{1: }|
|
|
|
|
:set wildchar^zz |
|
|
|
|
]])
|
|
|
|
feed('<C-E>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-10-17 06:42:34 -07:00
|
|
|
:set wildcha^zz |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- pressing <C-Y> should select the current match and end completion
|
|
|
|
feed('<Esc>:set wildchazz<Left><Left><Tab><C-Y>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-10-17 06:42:34 -07:00
|
|
|
:set wildchar^zz |
|
|
|
|
]])
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
feed('<Esc>')
|
|
|
|
|
|
|
|
-- check positioning with multibyte char in pattern
|
|
|
|
command('e långfile1')
|
|
|
|
command('sp långfile2')
|
|
|
|
feed(':b lå<tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{4:långfile2 }|
|
|
|
|
|
|
|
|
|
{1:~ }|
|
|
|
|
{1:~ }{s: långfile1 }{1: }|
|
|
|
|
{3:lå}{n: långfile2 }{3: }|
|
|
|
|
:b långfile1^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- check doesn't crash on screen resize
|
|
|
|
screen:try_resize(20, 6)
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|
|
|
|
|
{4:långfile2 }|
|
|
|
|
{s: långfile1 } |
|
|
|
|
{3:lå}{n: långfile2 }{3: }|
|
|
|
|
:b långfile1^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
screen:try_resize(50, 15)
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|
|
|
|
|
{4:långfile2 }|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: långfile1 }{1: }|
|
|
|
|
{3:lå}{n: långfile2 }{3: }|
|
|
|
|
:b långfile1^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- position is calculated correctly with "longest"
|
|
|
|
feed('<esc>')
|
|
|
|
command('set wildmode=longest:full,full')
|
|
|
|
feed(':b lå<tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|
|
|
|
|
{4:långfile2 }|
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: långfile1 }{1: }|
|
|
|
|
{3:lå}{n: långfile2 }{3: }|
|
|
|
|
:b långfile^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<esc>')
|
|
|
|
command('close')
|
|
|
|
command('set wildmode=full')
|
|
|
|
|
|
|
|
-- special case: when patterns ends with "/", show menu items aligned
|
|
|
|
-- after the "/"
|
|
|
|
feed(':e compdir/<tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*11
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: file1 }{1: }|
|
|
|
|
{1:~ }{n: file2 }{1: }|
|
|
|
|
:e compdir/file1^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('wildoptions=pum with scrolled messages', function()
|
|
|
|
screen:try_resize(40, 10)
|
|
|
|
command('set wildmenu')
|
|
|
|
command('set wildoptions=pum')
|
|
|
|
|
|
|
|
feed(':echoerr "fail"|echoerr "error"<cr>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
{6:fail} |
|
|
|
|
{6:error} |
|
|
|
|
{5:Press ENTER or type command to continue}^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
|
|
|
|
feed(':sign <tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{4: }{n: place }{4: }|
|
|
|
|
{6:fail} {n: undefine } |
|
|
|
|
{6:error}{n: unplace } |
|
|
|
|
:sign define^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
|
|
|
|
feed('d')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
{4: }|
|
|
|
|
{6:fail} |
|
|
|
|
{6:error} |
|
|
|
|
:sign defined^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('wildoptions=pum and wildmode=longest,full #11622', function()
|
|
|
|
screen:try_resize(30, 8)
|
|
|
|
command('set wildmenu')
|
|
|
|
command('set wildoptions=pum')
|
|
|
|
command('set wildmode=longest,full')
|
|
|
|
|
|
|
|
-- With 'wildmode' set to 'longest,full', completing a match should display
|
|
|
|
-- the longest match, the wildmenu should not be displayed.
|
|
|
|
feed(':sign u<Tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
:sign un^ |
|
|
|
|
]],
|
|
|
|
}
|
2024-01-12 10:59:57 -07:00
|
|
|
eq(0, fn.wildmenumode())
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
-- pressing <Tab> should display the wildmenu
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign undefine^ |
|
|
|
|
]],
|
|
|
|
}
|
2024-01-12 10:59:57 -07:00
|
|
|
eq(1, fn.wildmenumode())
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
-- pressing <Tab> second time should select the next entry in the menu
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{s: unplace }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]],
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('wildoptions=pum with a wrapped line in buffer vim-patch:8.2.4655', function()
|
|
|
|
screen:try_resize(32, 10)
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_buf_set_lines(0, 0, -1, true, { ('a'):rep(100) })
|
2023-04-27 05:19:21 -07:00
|
|
|
command('set wildoptions+=pum')
|
|
|
|
feed('$')
|
|
|
|
feed(':sign <Tab>')
|
|
|
|
screen:expect([[
|
2023-12-09 05:42:00 -07:00
|
|
|
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
aaaa {s: define } |
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
-- oldtest: Test_wildmenu_pum_odd_wildchar()
|
|
|
|
it('wildoptions=pum with odd wildchar', function()
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:try_resize(30, 10)
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
-- Test odd wildchar interactions with pum. Make sure they behave properly
|
|
|
|
-- and don't lead to memory corruption due to improperly cleaned up memory.
|
2023-04-27 05:19:21 -07:00
|
|
|
exec([[
|
|
|
|
set wildoptions=pum
|
|
|
|
set wildchar=<C-E>
|
|
|
|
]])
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
|
2023-10-17 06:42:34 -07:00
|
|
|
feed(':sign <C-E>')
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
|
|
|
|
-- <C-E> being a wildchar takes priority over its original functionality
|
|
|
|
feed('<C-E>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
{1:~ }{n: define }{1: }|
|
|
|
|
{1:~ }{s: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign jump^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Escape key can be wildchar too. Double-<Esc> is hard-coded to escape
|
|
|
|
-- command-line, and we need to make sure to clean up properly.
|
|
|
|
command('set wildchar=<Esc>')
|
|
|
|
feed(':sign <Esc>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- <C-\> can also be wildchar. <C-\><C-N> however will still escape cmdline
|
|
|
|
-- and we again need to make sure we clean up properly.
|
|
|
|
command([[set wildchar=<C-\>]])
|
|
|
|
feed([[:sign <C-\><C-\>]])
|
|
|
|
screen:expect([[
|
|
|
|
|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
{1:~ }{s: define }{1: }|
|
|
|
|
{1:~ }{n: jump }{1: }|
|
|
|
|
{1:~ }{n: list }{1: }|
|
|
|
|
{1:~ }{n: place }{1: }|
|
|
|
|
{1:~ }{n: undefine }{1: }|
|
|
|
|
{1:~ }{n: unplace }{1: }|
|
|
|
|
:sign define^ |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*8
|
vim-patch:9.0.2035: [security] use-after-free with wildmenu (#25687)
Problem: [security] use-after-free with wildmenu
Solution: properly clean up the wildmenu when exiting
Fix wildchar/wildmenu/pum memory corruption with special wildchar's
Currently, using `wildchar=<Esc>` or `wildchar=<C-\>` can lead to a
memory corruption if using wildmenu+pum, or wrong states if only using
wildmenu. This is due to the code only using one single place inside the
cmdline process loop to perform wild menu clean up (by checking
`end_wildmenu`) but there are other odd situations where the loop could
have exited and we need a post-loop clean up just to be sure. If the
clean up was not done you would have a stale popup menu referring to
invalid memory, or if not using popup menu, incorrect status line (if
`laststatus=0`).
For example, if you hit `<Esc>` two times when it's wildchar, there's a
hard-coded behavior to exit command-line as a failsafe for user, and if
you hit `<C-\><C-\><C-N>` it will also exit command-line, but the clean
up code would not have hit because of specialized `<C-\>` handling.
Fix Ctrl-E / Ctrl-Y to not cancel/accept wildmenu if they are also
used for 'wildchar'/'wildcharm'. Currently they don't behave properly,
and also have potentially memory unsafe behavior as the logic is
currently not accounting for this situation and try to do both.
(Previous patch that addressed this: vim/vim#11677)
Also, correctly document Escape key behavior (double-hit it to escape)
in wildchar docs as it's previously undocumented.
In addition, block known invalid chars to be set in `wildchar` option,
such as Ctrl-C and `<CR>`. This is just to make it clear to the user
they shouldn't be set, and is not required for this bug fix.
closes: vim/vim#13361
https://github.com/vim/vim/commit/8f4fb007e4d472b09ff6bed9ffa485e0c3093699
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
2023-10-17 07:43:42 -07:00
|
|
|
|
|
|
|
|
]])
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
2024-06-17 14:49:33 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_wildmenu_pum_hl_match()
|
|
|
|
it('highlighting matched text in cmdline pum', function()
|
|
|
|
exec([[
|
|
|
|
set wildoptions=pum,fuzzy
|
|
|
|
hi PmenuMatchSel guifg=Blue guibg=Grey
|
2024-07-27 06:42:12 -07:00
|
|
|
hi PmenuMatch guifg=Blue guibg=Plum1
|
2024-06-17 14:49:33 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
feed(':sign plc<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{s: }{ms:pl}{s:a}{ms:c}{s:e }{1: }|
|
|
|
|
{1:~ }{n: un}{mn:pl}{n:a}{mn:c}{n:e }{1: }|
|
|
|
|
:sign place^ |
|
|
|
|
]])
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{n: }{mn:pl}{n:a}{mn:c}{n:e }{1: }|
|
|
|
|
{1:~ }{s: un}{ms:pl}{s:a}{ms:c}{s:e }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{n: }{mn:pl}{n:a}{mn:c}{n:e }{1: }|
|
|
|
|
{1:~ }{n: un}{mn:pl}{n:a}{mn:c}{n:e }{1: }|
|
|
|
|
:sign plc^ |
|
|
|
|
]])
|
|
|
|
feed('<Esc>')
|
|
|
|
command('set wildoptions-=fuzzy')
|
|
|
|
feed(':sign un<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{s: }{ms:un}{s:define }{1: }|
|
|
|
|
{1:~ }{n: }{mn:un}{n:place }{1: }|
|
|
|
|
:sign undefine^ |
|
|
|
|
]])
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{n: }{mn:un}{n:define }{1: }|
|
|
|
|
{1:~ }{s: }{ms:un}{s:place }{1: }|
|
|
|
|
:sign unplace^ |
|
|
|
|
]])
|
|
|
|
feed('<Tab>')
|
|
|
|
screen:expect([[
|
|
|
|
|
|
|
|
|
{1:~ }|*16
|
|
|
|
{1:~ }{n: }{mn:un}{n:define }{1: }|
|
|
|
|
{1:~ }{n: }{mn:un}{n:place }{1: }|
|
|
|
|
:sign un^ |
|
|
|
|
]])
|
|
|
|
end)
|
2023-04-27 05:19:21 -07:00
|
|
|
end
|
2022-11-11 18:57:29 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it("'pumheight'", function()
|
|
|
|
screen:try_resize(32, 8)
|
|
|
|
feed('isome long prefix before the ')
|
|
|
|
command('set completeopt+=noinsert,noselect')
|
|
|
|
command('set linebreak')
|
|
|
|
command('set pumheight=2')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(29, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
some long prefix before the ^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
|
|
|
{n: word }{c: }|
|
|
|
|
{n: choice}{s: }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[4] = { -1, 'NW', 2, 1, 24, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the ^ |
|
|
|
|
{1:~ }{n: word }{c: }|
|
|
|
|
{1:~ }{n: choice}{s: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2023-03-10 19:05:47 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it("'pumwidth'", function()
|
|
|
|
screen:try_resize(32, 8)
|
|
|
|
feed('isome long prefix before the ')
|
|
|
|
command('set completeopt+=noinsert,noselect')
|
|
|
|
command('set linebreak')
|
|
|
|
command('set pumwidth=8')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(29, { 'word', 'choice', 'text', 'thing' })
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
some long prefix before the ^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
|
|
|
{n: word }|
|
|
|
|
{n: choice}|
|
|
|
|
{n: text }|
|
|
|
|
{n: thing }|
|
|
|
|
]],
|
|
|
|
float_pos = {
|
2024-01-16 06:26:21 -07:00
|
|
|
[4] = { -1, 'NW', 2, 1, 25, false, 100 },
|
2024-01-02 18:09:18 -07:00
|
|
|
},
|
2023-04-27 05:19:21 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
some long prefix before the ^ |
|
|
|
|
{1:~ }{n: word }|
|
|
|
|
{1:~ }{n: choice}|
|
|
|
|
{1:~ }{n: text }|
|
|
|
|
{1:~ }{n: thing }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
2023-03-10 19:05:47 -07:00
|
|
|
end)
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('does not crash when displayed in the last column with rightleft #12032', function()
|
|
|
|
local col = 30
|
|
|
|
local items = { 'word', 'choice', 'text', 'thing' }
|
|
|
|
local max_len = 0
|
|
|
|
for _, v in ipairs(items) do
|
|
|
|
max_len = max_len < #v and #v or max_len
|
|
|
|
end
|
|
|
|
screen:try_resize(col, 8)
|
|
|
|
command('set rightleft')
|
|
|
|
command('call setline(1, repeat(" ", &columns - ' .. max_len .. '))')
|
|
|
|
feed('$i')
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(col - max_len, items)
|
2023-04-27 05:19:21 -07:00
|
|
|
feed('<c-y>')
|
|
|
|
assert_alive()
|
2023-03-10 19:05:47 -07:00
|
|
|
end)
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('truncates double-width character correctly without scrollbar', function()
|
|
|
|
screen:try_resize(32, 8)
|
|
|
|
command('set completeopt+=menuone,noselect')
|
|
|
|
feed('i' .. string.rep(' ', 13))
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(14, { '哦哦哦哦哦哦哦哦哦哦' })
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
|
|
|
{n: 哦哦哦哦哦哦哦哦哦>}|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 12, false, 100 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
|
|
|
{1:~ }{n: 哦哦哦哦哦哦哦哦哦>}|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
2023-03-10 19:05:47 -07:00
|
|
|
end)
|
2021-12-23 17:06:27 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('truncates double-width character correctly with scrollbar', function()
|
|
|
|
screen:try_resize(32, 8)
|
|
|
|
command('set completeopt+=noselect')
|
|
|
|
command('set pumheight=4')
|
|
|
|
feed('i' .. string.rep(' ', 12))
|
|
|
|
local items = {}
|
|
|
|
for _ = 1, 8 do
|
|
|
|
table.insert(items, { word = '哦哦哦哦哦哦哦哦哦哦', equal = 1, dup = 1 })
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
fn.complete(13, items)
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
## grid 4
|
2023-12-09 05:42:00 -07:00
|
|
|
{n: 哦哦哦哦哦哦哦哦哦>}{c: }|*2
|
|
|
|
{n: 哦哦哦哦哦哦哦哦哦>}{s: }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 11, false, 100 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
^ |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }{n: 哦哦哦哦哦哦哦哦哦>}{c: }|*2
|
|
|
|
{1:~ }{n: 哦哦哦哦哦哦哦哦哦>}{s: }|*2
|
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
end)
|
2021-12-23 17:06:27 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
it('supports mousemodel=popup', function()
|
|
|
|
screen:try_resize(32, 6)
|
|
|
|
exec([[
|
|
|
|
call setline(1, 'popup menu test')
|
|
|
|
set mouse=a mousemodel=popup
|
|
|
|
|
2024-09-05 05:56:00 -07:00
|
|
|
" Delete the default MenuPopup event handler.
|
|
|
|
autocmd! nvim_popupmenu
|
2023-04-27 05:19:21 -07:00
|
|
|
aunmenu PopUp
|
|
|
|
menu PopUp.foo :let g:menustr = 'foo'<CR>
|
|
|
|
menu PopUp.bar :let g:menustr = 'bar'<CR>
|
|
|
|
menu PopUp.baz :let g:menustr = 'baz'<CR>
|
|
|
|
]])
|
2021-12-23 17:06:27 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 2, 0, 4)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
|
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><4,0>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
feed('<Down>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
|
|
|
|
|
## grid 4
|
|
|
|
{s: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{s: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
feed('<Down>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
|
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{s: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{s: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
feed('<CR>')
|
|
|
|
if multigrid then
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('bar', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 2, 2, 20)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 3, 19, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><20,2>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
:let g:menustr = 'b{n: baz } |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-09 21:56:43 -07:00
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 2, 0, 18)
|
2024-01-09 21:56:43 -07:00
|
|
|
screen:expect {
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
|
|
|
[2:--------------------------------]|*5
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|*4
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-02-09 20:54:26 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 17, false, 250 } },
|
2024-01-09 21:56:43 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
feed('<RightMouse><18,0>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 4, 1, 3)
|
2024-01-09 21:56:43 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
|
|
|
[2:--------------------------------]|*5
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|*4
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 3, 19, false, 250 } },
|
2024-01-09 21:56:43 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><20,2>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|*2
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
:let g:menustr = 'b{n: baz } |
|
|
|
|
]])
|
|
|
|
end
|
2023-04-27 05:19:21 -07:00
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('left', 'press', '', 4, 2, 2)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
2024-01-09 21:56:43 -07:00
|
|
|
feed('<LeftMouse><21,5>')
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('baz', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 2, 0, 4)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><4,0>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'drag', '', 2, 3, 6)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{s: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightDrag><6,3>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{s: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'release', '', 2, 1, 6)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightRelease><6,1>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('foo', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
eq(false, screen.options.mousemoveevent)
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 2, 0, 4)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><4,0>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
eq(true, screen.options.mousemoveevent)
|
|
|
|
if multigrid then
|
2024-02-09 20:54:26 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'up', '', 2, 0, 4)
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
|
|
|
[2:--------------------------------]|*5
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|*4
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 4
|
|
|
|
{s: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<ScrollWheelUp><4,0>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{s: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
eq(true, screen.options.mousemoveevent)
|
|
|
|
if multigrid then
|
|
|
|
api.nvim_input_mouse('move', '', '', 4, 2, 3)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{s: baz }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<MouseMove><6,3>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{n: bar }{1: }|
|
|
|
|
{1:~ }{s: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
eq(true, screen.options.mousemoveevent)
|
|
|
|
if multigrid then
|
2024-02-09 20:54:26 -07:00
|
|
|
api.nvim_input_mouse('wheel', 'down', '', 4, 2, 3)
|
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
|
|
|
[2:--------------------------------]|*5
|
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|*4
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{s: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
]],
|
|
|
|
float_pos = { [4] = { -1, 'NW', 2, 1, 3, false, 250 } },
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<ScrollWheelDown><6,3>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{1:~ }{s: bar }{1: }|
|
|
|
|
{1:~ }{n: baz }{1: }|
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
eq(true, screen.options.mousemoveevent)
|
|
|
|
if multigrid then
|
|
|
|
api.nvim_input_mouse('left', 'press', '', 4, 1, 3)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*5
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<LeftMouse><6,2>')
|
|
|
|
screen:expect([[
|
|
|
|
^popup menu test |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*4
|
2023-04-27 05:19:21 -07:00
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
eq(false, screen.options.mousemoveevent)
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('bar', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
command('set laststatus=0 | botright split')
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 5, 1, 20)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo }|
|
|
|
|
{n: bar }|
|
|
|
|
{n: baz }|
|
|
|
|
## grid 5
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'SW', 5, 1, 19, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><20,4>')
|
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }{n: foo }{1: }|
|
|
|
|
{3:[No Name] [+] }{n: bar }{3: }|
|
|
|
|
^popup menu test {n: baz } |
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('left', 'press', '', 4, 2, 2)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
## grid 5
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
2024-01-09 21:56:43 -07:00
|
|
|
feed('<LeftMouse><21,3>')
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('baz', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
|
|
|
|
command('set winwidth=1 | rightbelow vsplit')
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 6, 1, 14)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:---------------]│[6:----------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo}|
|
|
|
|
{n: bar}|
|
|
|
|
{n: baz}|
|
|
|
|
## grid 5
|
|
|
|
popup menu test|
|
|
|
|
{1:~ }|
|
|
|
|
## grid 6
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'SW', 6, 1, 12, false, 250 } },
|
2023-04-27 05:19:21 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><30,4>')
|
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }{n: foo}|
|
|
|
|
{3:[No Name] [+] }{n: bar}|
|
|
|
|
popup menu test│^popup menu t{n: baz}|
|
|
|
|
{1:~ }│{1:~ }|
|
|
|
|
:let g:menustr = 'baz' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('left', 'press', '', 4, 0, 2)
|
2023-04-27 05:19:21 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:---------------]│[6:----------------]|*2
|
2023-04-27 05:19:21 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 5
|
|
|
|
popup menu test|
|
|
|
|
{1:~ }|
|
|
|
|
## grid 6
|
|
|
|
^popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<LeftMouse><31,1>')
|
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
popup menu test│^popup menu test |
|
|
|
|
{1:~ }│{1:~ }|
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('foo', api.nvim_get_var('menustr'))
|
2023-05-02 19:29:19 -07:00
|
|
|
|
|
|
|
command('setlocal winbar=WINBAR')
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('right', 'press', '', 6, 1, 14)
|
2023-05-02 19:29:19 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-05-02 19:29:19 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:---------------]│[6:----------------]|*2
|
2023-05-02 19:29:19 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
## grid 4
|
|
|
|
{n: foo}|
|
|
|
|
{n: bar}|
|
|
|
|
{n: baz}|
|
|
|
|
## grid 5
|
|
|
|
popup menu test|
|
|
|
|
{1:~ }|
|
|
|
|
## grid 6
|
|
|
|
{2:WINBAR }|
|
|
|
|
^popup menu test |
|
|
|
|
]],
|
2024-01-16 06:26:21 -07:00
|
|
|
float_pos = { [4] = { -1, 'SW', 6, 1, 12, false, 250 } },
|
2023-05-02 19:29:19 -07:00
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<RightMouse><30,4>')
|
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }{n: foo}|
|
|
|
|
{3:[No Name] [+] }{n: bar}|
|
|
|
|
popup menu test│{2:WINBAR }{n: baz}|
|
|
|
|
{1:~ }│^popup menu test |
|
|
|
|
:let g:menustr = 'foo' |
|
|
|
|
]])
|
|
|
|
end
|
|
|
|
if multigrid then
|
2024-01-12 10:59:57 -07:00
|
|
|
api.nvim_input_mouse('left', 'press', '', 4, 1, 2)
|
2023-05-02 19:29:19 -07:00
|
|
|
screen:expect({
|
|
|
|
grid = [[
|
|
|
|
## grid 1
|
2023-12-09 05:42:00 -07:00
|
|
|
[2:--------------------------------]|*2
|
2023-05-02 19:29:19 -07:00
|
|
|
{3:[No Name] [+] }|
|
2023-12-09 05:42:00 -07:00
|
|
|
[5:---------------]│[6:----------------]|*2
|
2023-05-02 19:29:19 -07:00
|
|
|
[3:--------------------------------]|
|
|
|
|
## grid 2
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
## grid 3
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
## grid 5
|
|
|
|
popup menu test|
|
|
|
|
{1:~ }|
|
|
|
|
## grid 6
|
|
|
|
{2:WINBAR }|
|
|
|
|
^popup menu test |
|
|
|
|
]],
|
|
|
|
})
|
|
|
|
else
|
|
|
|
feed('<LeftMouse><31,2>')
|
|
|
|
screen:expect([[
|
|
|
|
popup menu test |
|
|
|
|
{1:~ }|
|
|
|
|
{3:[No Name] [+] }|
|
|
|
|
popup menu test│{2:WINBAR }|
|
|
|
|
{1:~ }│^popup menu test |
|
|
|
|
:let g:menustr = 'bar' |
|
|
|
|
]])
|
|
|
|
end
|
2024-01-12 10:59:57 -07:00
|
|
|
eq('bar', api.nvim_get_var('menustr'))
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
if not multigrid then
|
|
|
|
-- oldtest: Test_popup_command_dump()
|
|
|
|
it(':popup command', function()
|
|
|
|
exec([[
|
2024-09-05 05:56:00 -07:00
|
|
|
" Delete the default MenuPopup event handler.
|
|
|
|
autocmd! nvim_popupmenu
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
func ChangeMenu()
|
|
|
|
aunmenu PopUp.&Paste
|
|
|
|
nnoremenu 1.40 PopUp.&Paste :echomsg "pasted"<CR>
|
|
|
|
echomsg 'changed'
|
|
|
|
return "\<Ignore>"
|
|
|
|
endfunc
|
|
|
|
|
|
|
|
let lines =<< trim END
|
|
|
|
one two three four five
|
|
|
|
and one two Xthree four five
|
|
|
|
one more two three four five
|
|
|
|
END
|
|
|
|
call setline(1, lines)
|
|
|
|
|
|
|
|
aunmenu *
|
|
|
|
source $VIMRUNTIME/menu.vim
|
|
|
|
]])
|
|
|
|
feed('/X<CR>:popup PopUp<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more tw{n: Undo } |
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Paste }{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Select Word }{1: }|
|
|
|
|
{1:~ }{n: Select Sentence }{1: }|
|
|
|
|
{1:~ }{n: Select Paragraph }{1: }|
|
|
|
|
{1:~ }{n: Select Line }{1: }|
|
|
|
|
{1:~ }{n: Select Block }{1: }|
|
|
|
|
{1:~ }{n: Select All }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
:popup PopUp |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- go to the Paste entry in the menu
|
|
|
|
feed('jj')
|
|
|
|
screen:expect([[
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more tw{n: Undo } |
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{s: Paste }{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Select Word }{1: }|
|
|
|
|
{1:~ }{n: Select Sentence }{1: }|
|
|
|
|
{1:~ }{n: Select Paragraph }{1: }|
|
|
|
|
{1:~ }{n: Select Line }{1: }|
|
|
|
|
{1:~ }{n: Select Block }{1: }|
|
|
|
|
{1:~ }{n: Select All }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
:popup PopUp |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Select a word
|
|
|
|
feed('j')
|
|
|
|
screen:expect([[
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more tw{n: Undo } |
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Paste }{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{s: Select Word }{1: }|
|
|
|
|
{1:~ }{n: Select Sentence }{1: }|
|
|
|
|
{1:~ }{n: Select Paragraph }{1: }|
|
|
|
|
{1:~ }{n: Select Line }{1: }|
|
|
|
|
{1:~ }{n: Select Block }{1: }|
|
|
|
|
{1:~ }{n: Select All }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
:popup PopUp |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>')
|
|
|
|
|
2024-06-15 07:37:48 -07:00
|
|
|
command('set rightleft')
|
|
|
|
feed('/X<CR>:popup PopUp<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
evif ruof eerht owt eno|
|
|
|
|
evif ruof eerht{7:^X} owt eno dna|
|
|
|
|
{n: odnU }wt erom eno|
|
|
|
|
{1: }{n: }{1: ~}|
|
|
|
|
{1: }{n: etsaP }{1: ~}|
|
|
|
|
{1: }{n: }{1: ~}|
|
|
|
|
{1: }{n: droW tceleS }{1: ~}|
|
|
|
|
{1: }{n: ecnetneS tceleS }{1: ~}|
|
|
|
|
{1: }{n: hpargaraP tceleS }{1: ~}|
|
|
|
|
{1: }{n: eniL tceleS }{1: ~}|
|
|
|
|
{1: }{n: kcolB tceleS }{1: ~}|
|
|
|
|
{1: }{n: llA tceleS }{1: ~}|
|
|
|
|
{1: ~}|*7
|
|
|
|
:popup PopUp |
|
|
|
|
]])
|
|
|
|
feed('<Esc>')
|
|
|
|
command('set norightleft')
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
-- Set an <expr> mapping to change a menu entry while it's displayed.
|
|
|
|
-- The text should not change but the command does.
|
|
|
|
-- Also verify that "changed" shows up, which means the mapping triggered.
|
|
|
|
command('nnoremap <expr> <F2> ChangeMenu()')
|
|
|
|
feed('/X<CR>:popup PopUp<CR><F2>')
|
|
|
|
screen:expect([[
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more tw{n: Undo } |
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Paste }{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Select Word }{1: }|
|
|
|
|
{1:~ }{n: Select Sentence }{1: }|
|
|
|
|
{1:~ }{n: Select Paragraph }{1: }|
|
|
|
|
{1:~ }{n: Select Line }{1: }|
|
|
|
|
{1:~ }{n: Select Block }{1: }|
|
|
|
|
{1:~ }{n: Select All }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*7
|
2023-04-27 05:19:21 -07:00
|
|
|
changed |
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- Select the Paste entry, executes the changed menu item.
|
|
|
|
feed('jj<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more two three four five |
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*16
|
2023-04-27 05:19:21 -07:00
|
|
|
pasted |
|
|
|
|
]])
|
2023-04-27 14:50:08 -07:00
|
|
|
|
|
|
|
-- Add a window toolbar to the window and check the :popup menu position.
|
|
|
|
command('setlocal winbar=TEST')
|
|
|
|
feed('/X<CR>:popup PopUp<CR>')
|
|
|
|
screen:expect([[
|
|
|
|
{2:TEST }|
|
|
|
|
one two three four five |
|
|
|
|
and one two {7:^X}three four five |
|
|
|
|
one more tw{n: Undo } |
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Paste }{1: }|
|
|
|
|
{1:~ }{n: }{1: }|
|
|
|
|
{1:~ }{n: Select Word }{1: }|
|
|
|
|
{1:~ }{n: Select Sentence }{1: }|
|
|
|
|
{1:~ }{n: Select Paragraph }{1: }|
|
|
|
|
{1:~ }{n: Select Line }{1: }|
|
|
|
|
{1:~ }{n: Select Block }{1: }|
|
|
|
|
{1:~ }{n: Select All }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*6
|
2023-04-27 14:50:08 -07:00
|
|
|
:popup PopUp |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>')
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
|
|
|
|
2024-06-15 07:37:48 -07:00
|
|
|
-- oldtest: Test_mouse_popup_position()
|
|
|
|
it('position of right-click menu when clicking near edge', function()
|
|
|
|
screen:try_resize(50, 20)
|
|
|
|
exec([[
|
|
|
|
set mousemodel=popup_setpos
|
2024-09-05 05:56:00 -07:00
|
|
|
" Delete the default MenuPopup event handler.
|
|
|
|
autocmd! nvim_popupmenu
|
2024-06-15 07:37:48 -07:00
|
|
|
aunmenu *
|
|
|
|
source $VIMRUNTIME/menu.vim
|
|
|
|
call setline(1, join(range(20)))
|
|
|
|
]])
|
|
|
|
|
|
|
|
api.nvim_input_mouse('right', 'press', '', 0, 0, 45 - 1)
|
|
|
|
screen:expect([[
|
|
|
|
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 ^18 19 |
|
|
|
|
{1:~ }{n: Undo }|
|
|
|
|
{1:~ }{n: }|
|
|
|
|
{1:~ }{n: Paste }|
|
|
|
|
{1:~ }{n: }|
|
|
|
|
{1:~ }{n: Select Word }|
|
|
|
|
{1:~ }{n: Select Sentence }|
|
|
|
|
{1:~ }{n: Select Paragraph}|
|
|
|
|
{1:~ }{n: Select Line }|
|
|
|
|
{1:~ }{n: Select Block }|
|
|
|
|
{1:~ }{n: Select All }|
|
|
|
|
{1:~ }|*8
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
feed('<Esc>')
|
|
|
|
|
|
|
|
command('set rightleft')
|
|
|
|
api.nvim_input_mouse('right', 'press', '', 0, 0, 50 - 45)
|
|
|
|
screen:expect([[
|
|
|
|
91 8^1 71 61 51 41 31 21 11 01 9 8 7 6 5 4 3 2 1 0|
|
|
|
|
{n: odnU }{1: ~}|
|
|
|
|
{n: }{1: ~}|
|
|
|
|
{n: etsaP }{1: ~}|
|
|
|
|
{n: }{1: ~}|
|
|
|
|
{n: droW tceleS }{1: ~}|
|
|
|
|
{n: ecnetneS tceleS }{1: ~}|
|
|
|
|
{n:hpargaraP tceleS }{1: ~}|
|
|
|
|
{n: eniL tceleS }{1: ~}|
|
|
|
|
{n: kcolB tceleS }{1: ~}|
|
|
|
|
{n: llA tceleS }{1: ~}|
|
|
|
|
{1: ~}|*8
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
feed('<Esc>')
|
|
|
|
command('set norightleft')
|
|
|
|
end)
|
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
describe('"kind" and "menu"', function()
|
|
|
|
before_each(function()
|
|
|
|
screen:try_resize(30, 8)
|
|
|
|
exec([[
|
|
|
|
func CompleteFunc( findstart, base )
|
|
|
|
if a:findstart
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
return {
|
|
|
|
\ 'words': [
|
|
|
|
\ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', },
|
|
|
|
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', },
|
|
|
|
\ { 'word': 'aword3', 'menu': 'extra text 3', 'kind': 'W', },
|
|
|
|
\]}
|
|
|
|
endfunc
|
|
|
|
set completeopt=menu
|
|
|
|
set completefunc=CompleteFunc
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- oldtest: Test_pum_highlights_default()
|
|
|
|
it('default highlight groups', function()
|
|
|
|
feed('iaw<C-X><C-u>')
|
|
|
|
screen:expect([[
|
|
|
|
aword1^ |
|
|
|
|
{s:aword1 W extra text 1 }{1: }|
|
|
|
|
{n:aword2 W extra text 2 }{1: }|
|
|
|
|
{n:aword3 W extra text 3 }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end)
|
|
|
|
|
|
|
|
-- oldtest: Test_pum_highlights_custom()
|
|
|
|
it('custom highlight groups', function()
|
|
|
|
exec([[
|
2024-07-27 06:42:12 -07:00
|
|
|
hi PmenuKind guifg=Red guibg=Plum1
|
2023-04-27 05:19:21 -07:00
|
|
|
hi PmenuKindSel guifg=Red guibg=Grey
|
2024-07-27 06:42:12 -07:00
|
|
|
hi PmenuExtra guifg=White guibg=Plum1
|
2023-04-27 05:19:21 -07:00
|
|
|
hi PmenuExtraSel guifg=Black guibg=Grey
|
|
|
|
]])
|
|
|
|
feed('iaw<C-X><C-u>')
|
2024-04-02 02:46:48 -07:00
|
|
|
screen:expect([[
|
2023-04-27 05:19:21 -07:00
|
|
|
aword1^ |
|
|
|
|
{s:aword1 }{ks:W }{xs:extra text 1 }{1: }|
|
|
|
|
{n:aword2 }{kn:W }{xn:extra text 2 }{1: }|
|
|
|
|
{n:aword3 }{kn:W }{xn:extra text 3 }{1: }|
|
2023-12-09 05:42:00 -07:00
|
|
|
{1:~ }|*3
|
2023-04-27 05:19:21 -07:00
|
|
|
{2:-- }{5:match 1 of 3} |
|
2024-04-02 02:46:48 -07:00
|
|
|
]])
|
2023-04-27 05:19:21 -07:00
|
|
|
end)
|
|
|
|
end)
|
2024-06-12 23:08:50 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_pum_highlights_match()
|
|
|
|
it('can highlight matched text', function()
|
|
|
|
exec([[
|
|
|
|
func Omni_test(findstart, base)
|
|
|
|
if a:findstart
|
|
|
|
return col(".")
|
|
|
|
endif
|
|
|
|
return {
|
|
|
|
\ 'words': [
|
2024-06-14 13:47:53 -07:00
|
|
|
\ { 'word': 'foo', 'kind': 'fookind' },
|
2024-06-16 15:42:11 -07:00
|
|
|
\ { 'word': 'foofoo', 'kind': 'fookind' },
|
2024-06-14 13:47:53 -07:00
|
|
|
\ { 'word': 'foobar', 'kind': 'fookind' },
|
|
|
|
\ { 'word': 'fooBaz', 'kind': 'fookind' },
|
|
|
|
\ { 'word': 'foobala', 'kind': 'fookind' },
|
|
|
|
\ { 'word': '你好' },
|
|
|
|
\ { 'word': '你好吗' },
|
|
|
|
\ { 'word': '你不好吗' },
|
|
|
|
\ { 'word': '你可好吗' },
|
2024-06-12 23:08:50 -07:00
|
|
|
\]}
|
|
|
|
endfunc
|
2024-06-17 15:02:01 -07:00
|
|
|
|
|
|
|
func Comp()
|
|
|
|
let col = col('.')
|
|
|
|
if getline('.') == 'f'
|
|
|
|
let col -= 1
|
|
|
|
endif
|
|
|
|
call complete(col, [
|
|
|
|
\ #{word: "foo", icase: 1},
|
|
|
|
\ #{word: "Foobar", icase: 1},
|
|
|
|
\ #{word: "fooBaz", icase: 1},
|
|
|
|
\])
|
|
|
|
return ''
|
|
|
|
endfunc
|
|
|
|
|
2024-06-12 23:08:50 -07:00
|
|
|
set omnifunc=Omni_test
|
|
|
|
set completeopt=menu,noinsert,fuzzy
|
2024-06-16 15:42:11 -07:00
|
|
|
hi PmenuMatchSel guifg=Blue guibg=Grey
|
2024-07-27 06:42:12 -07:00
|
|
|
hi PmenuMatch guifg=Blue guibg=Plum1
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
|
|
|
feed('i<C-X><C-O>')
|
|
|
|
local pum_start = [[
|
|
|
|
^ |
|
2024-06-14 13:47:53 -07:00
|
|
|
{s:foo fookind }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{n:foofoo fookind }{1: }|
|
2024-06-14 13:47:53 -07:00
|
|
|
{n:foobar fookind }{1: }|
|
|
|
|
{n:fooBaz fookind }{1: }|
|
|
|
|
{n:foobala fookind }{1: }|
|
|
|
|
{n:你好 }{1: }|
|
|
|
|
{n:你好吗 }{1: }|
|
|
|
|
{n:你不好吗 }{1: }|
|
|
|
|
{n:你可好吗 }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1:~ }|*9
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]]
|
|
|
|
screen:expect(pum_start)
|
|
|
|
feed('fo')
|
|
|
|
screen:expect([[
|
|
|
|
fo^ |
|
2024-06-14 13:47:53 -07:00
|
|
|
{ms:fo}{s:o fookind }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{mn:fo}{n:ofoo fookind }{1: }|
|
2024-06-14 13:47:53 -07:00
|
|
|
{mn:fo}{n:obar fookind }{1: }|
|
|
|
|
{mn:fo}{n:oBaz fookind }{1: }|
|
|
|
|
{mn:fo}{n:obala fookind }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1:~ }|*13
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
|
|
|
feed('<Esc>S<C-X><C-O>')
|
|
|
|
screen:expect(pum_start)
|
|
|
|
feed('你')
|
|
|
|
screen:expect([[
|
|
|
|
你^ |
|
|
|
|
{ms:你}{s:好 }{1: }|
|
|
|
|
{mn:你}{n:好吗 }{1: }|
|
|
|
|
{mn:你}{n:不好吗 }{1: }|
|
|
|
|
{mn:你}{n:可好吗 }{1: }|
|
|
|
|
{1:~ }|*14
|
2024-06-16 15:42:11 -07:00
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
|
|
|
feed('吗')
|
|
|
|
screen:expect([[
|
|
|
|
你吗^ |
|
|
|
|
{ms:你}{s:好}{ms:吗}{s: }{1: }|
|
|
|
|
{mn:你}{n:不好}{mn:吗}{n: }{1: }|
|
|
|
|
{mn:你}{n:可好}{mn:吗}{n: }{1: }|
|
|
|
|
{1:~ }|*15
|
2024-06-16 15:42:11 -07:00
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
|
|
|
feed('<C-E><Esc>')
|
2024-06-16 15:42:11 -07:00
|
|
|
|
2024-06-12 23:08:50 -07:00
|
|
|
command('set rightleft')
|
|
|
|
feed('S<C-X><C-O>')
|
2024-06-16 15:42:11 -07:00
|
|
|
local pum_start_rl = [[
|
2024-06-12 23:08:50 -07:00
|
|
|
^ |
|
2024-06-15 06:39:56 -07:00
|
|
|
{1: }{s: dnikoof oof}|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1: }{n: dnikoof oofoof}|
|
2024-06-15 06:39:56 -07:00
|
|
|
{1: }{n: dnikoof raboof}|
|
|
|
|
{1: }{n: dnikoof zaBoof}|
|
|
|
|
{1: }{n: dnikoof alaboof}|
|
2024-06-14 13:47:53 -07:00
|
|
|
{1: }{n: 好你}|
|
|
|
|
{1: }{n: 吗好你}|
|
|
|
|
{1: }{n: 吗好不你}|
|
|
|
|
{1: }{n: 吗好可你}|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1: ~}|*9
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
|
|
|
]]
|
|
|
|
screen:expect(pum_start_rl)
|
2024-06-12 23:08:50 -07:00
|
|
|
feed('fo')
|
|
|
|
screen:expect([[
|
|
|
|
^ of|
|
2024-06-15 06:39:56 -07:00
|
|
|
{1: }{s: dnikoof o}{ms:of}|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1: }{n: dnikoof oofo}{mn:of}|
|
2024-06-15 06:39:56 -07:00
|
|
|
{1: }{n: dnikoof rabo}{mn:of}|
|
|
|
|
{1: }{n: dnikoof zaBo}{mn:of}|
|
|
|
|
{1: }{n: dnikoof alabo}{mn:of}|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1: ~}|*13
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
|
|
|
]])
|
|
|
|
feed('<Esc>S<C-X><C-O>')
|
|
|
|
screen:expect(pum_start_rl)
|
|
|
|
feed('你')
|
|
|
|
screen:expect([[
|
|
|
|
^ 你|
|
|
|
|
{1: }{s: 好}{ms:你}|
|
|
|
|
{1: }{n: 吗好}{mn:你}|
|
|
|
|
{1: }{n: 吗好不}{mn:你}|
|
|
|
|
{1: }{n: 吗好可}{mn:你}|
|
2024-06-12 23:08:50 -07:00
|
|
|
{1: ~}|*14
|
2024-06-16 15:42:11 -07:00
|
|
|
{2:-- }{5:match 1 of 9} |
|
|
|
|
]])
|
|
|
|
feed('吗')
|
|
|
|
screen:expect([[
|
|
|
|
^ 吗你|
|
|
|
|
{1: }{s: }{ms:吗}{s:好}{ms:你}|
|
|
|
|
{1: }{n: }{mn:吗}{n:好不}{mn:你}|
|
|
|
|
{1: }{n: }{mn:吗}{n:好可}{mn:你}|
|
|
|
|
{1: ~}|*15
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
|
|
|
feed('<C-E><Esc>')
|
|
|
|
command('set norightleft')
|
|
|
|
|
|
|
|
command('set completeopt-=fuzzy')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect(pum_start)
|
|
|
|
feed('fo')
|
|
|
|
screen:expect([[
|
|
|
|
fo^ |
|
2024-06-14 13:47:53 -07:00
|
|
|
{ms:fo}{s:o fookind }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{mn:fo}{n:ofoo fookind }{1: }|
|
2024-06-14 13:47:53 -07:00
|
|
|
{mn:fo}{n:obar fookind }{1: }|
|
|
|
|
{mn:fo}{n:oBaz fookind }{1: }|
|
|
|
|
{mn:fo}{n:obala fookind }{1: }|
|
2024-06-16 15:42:11 -07:00
|
|
|
{1:~ }|*13
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
2024-06-12 23:08:50 -07:00
|
|
|
]])
|
2024-06-16 15:42:11 -07:00
|
|
|
feed('<C-E><Esc>')
|
|
|
|
|
|
|
|
command('set rightleft')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect(pum_start_rl)
|
|
|
|
feed('fo')
|
|
|
|
screen:expect([[
|
|
|
|
^ of|
|
|
|
|
{1: }{s: dnikoof o}{ms:of}|
|
|
|
|
{1: }{n: dnikoof oofo}{mn:of}|
|
|
|
|
{1: }{n: dnikoof rabo}{mn:of}|
|
|
|
|
{1: }{n: dnikoof zaBo}{mn:of}|
|
|
|
|
{1: }{n: dnikoof alabo}{mn:of}|
|
|
|
|
{1: ~}|*13
|
|
|
|
{2:-- }{5:match 1 of 9} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><Esc>')
|
|
|
|
command('set norightleft')
|
2024-06-17 15:02:01 -07:00
|
|
|
|
|
|
|
feed('S<C-R>=Comp()<CR>f')
|
|
|
|
screen:expect([[
|
|
|
|
f^ |
|
|
|
|
{ms:f}{s:oo }{1: }|
|
|
|
|
{mn:F}{n:oobar }{1: }|
|
|
|
|
{mn:f}{n:ooBaz }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
feed('o<BS><C-R>=Comp()<CR>')
|
|
|
|
screen:expect_unchanged(true)
|
|
|
|
|
2024-07-06 07:44:37 -07:00
|
|
|
feed('<Esc>')
|
|
|
|
command('set completeopt+=fuzzy,menu')
|
|
|
|
feed('S hello helio hero h<C-X><C-P>')
|
|
|
|
screen:expect([[
|
|
|
|
hello helio hero h^ |
|
|
|
|
{1:~ }{n: }{mn:h}{n:ello }{1: }|
|
|
|
|
{1:~ }{n: }{mn:h}{n:elio }{1: }|
|
|
|
|
{1:~ }{s: }{ms:h}{s:ero }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
|
|
|
|
feed('<Esc>S hello helio hero h<C-X><C-P><C-P>')
|
|
|
|
screen:expect([[
|
|
|
|
hello helio hero h^ |
|
|
|
|
{1:~ }{n: }{mn:h}{n:ello }{1: }|
|
|
|
|
{1:~ }{s: }{ms:h}{s:elio }{1: }|
|
|
|
|
{1:~ }{n: }{mn:h}{n:ero }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 2 of 3} |
|
|
|
|
]])
|
|
|
|
|
2024-06-17 15:02:01 -07:00
|
|
|
feed('<C-E><Esc>')
|
2024-06-12 23:08:50 -07:00
|
|
|
end)
|
2024-07-27 03:14:22 -07:00
|
|
|
|
2024-07-27 06:44:05 -07:00
|
|
|
-- oldtest: Test_pum_user_hl_group()
|
2024-07-27 03:14:22 -07:00
|
|
|
it('custom hl_group override', function()
|
|
|
|
exec([[
|
|
|
|
func CompleteFunc( findstart, base )
|
|
|
|
if a:findstart
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
return {
|
|
|
|
\ 'words': [
|
|
|
|
\ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'hl_group': 'StrikeFake' },
|
|
|
|
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', },
|
|
|
|
\ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'hl_group': 'StrikeFake' },
|
|
|
|
\]}
|
|
|
|
endfunc
|
|
|
|
set completeopt=menu
|
|
|
|
set completefunc=CompleteFunc
|
2024-07-27 06:44:05 -07:00
|
|
|
|
|
|
|
hi StrikeFake guifg=DarkRed
|
|
|
|
func HlMatch()
|
|
|
|
hi PmenuMatchSel guifg=Blue guibg=Grey gui=underline
|
|
|
|
hi PmenuMatch guifg=Blue guibg=Plum1 gui=underline
|
|
|
|
endfunc
|
2024-07-27 03:14:22 -07:00
|
|
|
]])
|
2024-07-27 06:44:05 -07:00
|
|
|
|
|
|
|
feed('Saw<C-X><C-U>')
|
2024-07-27 03:14:22 -07:00
|
|
|
screen:expect([[
|
|
|
|
aword1^ |
|
|
|
|
{ds:aword1 W extra text 1 }{1: }|
|
|
|
|
{n:aword2 W extra text 2 }{1: }|
|
|
|
|
{dn:你好 W extra text 3 }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
2024-07-27 06:44:05 -07:00
|
|
|
feed('<C-E><Esc>')
|
|
|
|
|
|
|
|
command('call HlMatch()')
|
|
|
|
|
|
|
|
feed('Saw<C-X><C-U>')
|
|
|
|
screen:expect([[
|
|
|
|
aword1^ |
|
|
|
|
{uds:aw}{ds:ord1 W extra text 1 }{1: }|
|
|
|
|
{umn:aw}{n:ord2 W extra text 2 }{1: }|
|
|
|
|
{dn:你好 W extra text 3 }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-N>')
|
|
|
|
screen:expect([[
|
|
|
|
aword2^ |
|
|
|
|
{udn:aw}{dn:ord1 W extra text 1 }{1: }|
|
|
|
|
{ums:aw}{s:ord2 W extra text 2 }{1: }|
|
|
|
|
{dn:你好 W extra text 3 }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 2 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><Esc>')
|
2024-07-27 03:14:22 -07:00
|
|
|
end)
|
2024-08-23 17:38:05 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_pum_user_kind_hlgroup()
|
|
|
|
it('custom kind_hlgroup override', function()
|
|
|
|
exec([[
|
|
|
|
func CompleteFunc( findstart, base )
|
|
|
|
if a:findstart
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
return {
|
|
|
|
\ 'words': [
|
|
|
|
\ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'variable', 'kind_hlgroup': 'KindVar', 'hl_group': 'StrikeFake' },
|
|
|
|
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'function', 'kind_hlgroup': 'KindFunc' },
|
|
|
|
\ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'class', 'kind_hlgroup': 'KindClass' },
|
|
|
|
\]}
|
|
|
|
endfunc
|
|
|
|
set completeopt=menu
|
|
|
|
set completefunc=CompleteFunc
|
|
|
|
|
|
|
|
hi StrikeFake guifg=DarkRed
|
|
|
|
hi KindVar guifg=DarkYellow
|
|
|
|
hi KindFunc guifg=DarkBlue
|
|
|
|
hi KindClass guifg=DarkGreen
|
|
|
|
]])
|
|
|
|
|
|
|
|
local attr_ids = screen:get_default_attr_ids()
|
|
|
|
attr_ids.kvs = { foreground = Screen.colors.DarkYellow, background = Screen.colors.Grey }
|
|
|
|
attr_ids.kfn = { foreground = Screen.colors.DarkBlue, background = Screen.colors.Plum1 }
|
|
|
|
attr_ids.kcn = { foreground = Screen.colors.DarkGreen, background = Screen.colors.Plum1 }
|
|
|
|
screen:set_default_attr_ids(attr_ids)
|
|
|
|
|
|
|
|
feed('S<C-X><C-U>')
|
|
|
|
screen:expect([[
|
|
|
|
aword1^ |
|
|
|
|
{ds:aword1 }{kvs:variable }{ds:extra text 1 }{1: }|
|
|
|
|
{n:aword2 }{kfn:function }{n:extra text 2 }{1: }|
|
|
|
|
{n:你好 }{kcn:class }{n:extra text 3 }{1: }|
|
|
|
|
{1:~ }|*15
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><Esc>')
|
|
|
|
end)
|
2024-10-02 15:45:01 -07:00
|
|
|
|
|
|
|
-- oldtest: Test_pum_completeitemalign()
|
|
|
|
it('completeitemalign option', function()
|
|
|
|
screen:try_resize(30, 15)
|
|
|
|
exec([[
|
|
|
|
func Omni_test(findstart, base)
|
|
|
|
if a:findstart
|
|
|
|
return col(".")
|
|
|
|
endif
|
|
|
|
return {
|
|
|
|
\ 'words': [
|
|
|
|
\ { 'word': 'foo', 'kind': 'S', 'menu': 'menu' },
|
|
|
|
\ { 'word': 'bar', 'kind': 'T', 'menu': 'menu' },
|
|
|
|
\ { 'word': '你好', 'kind': 'C', 'menu': '中文' },
|
|
|
|
\]}
|
|
|
|
endfunc
|
|
|
|
set omnifunc=Omni_test
|
|
|
|
]])
|
|
|
|
-- T1
|
|
|
|
command('set cia=abbr,kind,menu')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:foo S menu }{1: }|
|
|
|
|
{n:bar T menu }{1: }|
|
|
|
|
{n:你好 C 中文 }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T2
|
|
|
|
command('set cia=abbr,menu,kind')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:foo menu S }{1: }|
|
|
|
|
{n:bar menu T }{1: }|
|
|
|
|
{n:你好 中文 C }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T3
|
|
|
|
command('set cia=kind,abbr,menu')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:S foo menu }{1: }|
|
|
|
|
{n:T bar menu }{1: }|
|
|
|
|
{n:C 你好 中文 }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T4
|
|
|
|
command('set cia=kind,menu,abbr')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:S menu foo }{1: }|
|
|
|
|
{n:T menu bar }{1: }|
|
|
|
|
{n:C 中文 你好 }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T5
|
|
|
|
command('set cia=menu,abbr,kind')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:menu foo S }{1: }|
|
|
|
|
{n:menu bar T }{1: }|
|
|
|
|
{n:中文 你好 C }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T6
|
|
|
|
command('set cia=menu,kind,abbr')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:menu S foo }{1: }|
|
|
|
|
{n:menu T bar }{1: }|
|
|
|
|
{n:中文 C 你好 }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
feed('<C-E><ESC>')
|
|
|
|
-- T7
|
|
|
|
command('set cia&')
|
|
|
|
feed('S<C-X><C-O>')
|
|
|
|
screen:expect([[
|
|
|
|
foo^ |
|
|
|
|
{s:foo S menu }{1: }|
|
|
|
|
{n:bar T menu }{1: }|
|
|
|
|
{n:你好 C 中文 }{1: }|
|
|
|
|
{1:~ }|*10
|
|
|
|
{2:-- }{5:match 1 of 3} |
|
|
|
|
]])
|
|
|
|
end)
|
2021-12-23 17:06:27 -07:00
|
|
|
end
|
2023-04-27 05:19:21 -07:00
|
|
|
end
|
2022-06-30 06:42:39 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
describe('with ext_multigrid', function()
|
|
|
|
with_ext_multigrid(true)
|
|
|
|
end)
|
2022-06-30 06:42:39 -07:00
|
|
|
|
2023-04-27 05:19:21 -07:00
|
|
|
describe('without ext_multigrid', function()
|
|
|
|
with_ext_multigrid(false)
|
2022-06-30 06:42:39 -07:00
|
|
|
end)
|
2018-08-30 21:00:04 -07:00
|
|
|
end)
|