We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<C-x>
1 parent 751d565 commit ac1c302Copy full SHA for ac1c302
tests/test_clue.lua
@@ -2251,7 +2251,8 @@ T['Reproducing keys']['works for builtin keymaps in Insert mode'] = function()
2251
2252
eq(child.fn.mode(), 'i')
2253
local complete_words = vim.tbl_map(function(x) return x.word end, child.fn.complete_info().items)
2254
- eq(complete_words, { 'aa aa', 'bb bb' })
+ eq(vim.tbl_contains(complete_words, 'aa aa'), true)
2255
+ eq(vim.tbl_contains(complete_words, 'bb bb'), true)
2256
end
2257
2258
T['Reproducing keys']['works for user keymaps in Insert mode'] = function()
0 commit comments