mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
fix(messages): no message kind for search pattern #31272
This commit is contained in:
@@ -1140,6 +1140,18 @@ stack traceback:
|
||||
exec_lua([[vim.print({ foo = "bar" })]])
|
||||
screen:expect_unchanged()
|
||||
end)
|
||||
|
||||
it('emits single message for normal search)', function()
|
||||
feed('ax<cr>x<esc>?x<cr>')
|
||||
screen:expect({
|
||||
messages = {
|
||||
{
|
||||
content = { { '?x ' } },
|
||||
kind = 'search_cmd',
|
||||
},
|
||||
},
|
||||
})
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('ui/builtin messages', function()
|
||||
|
||||
Reference in New Issue
Block a user