mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
65fb622000
Hope this will make people using feed_command less likely: this hides bugs. Already found at least two: 1. msgpackparse() will show internal error: hash_add() in case of duplicate keys, though it will still work correctly. Currently silenced. 2. ttimeoutlen was spelled incorrectly, resulting in option not being set when expected. Test was still functioning somehow though. Currently fixed.
43 lines
1.2 KiB
Lua
43 lines
1.2 KiB
Lua
-- Test for character searches
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
|
local feed, insert = helpers.feed, helpers.insert
|
|
local clear, feed_command, expect = helpers.clear, helpers.feed_command, helpers.expect
|
|
|
|
describe('charsearch', function()
|
|
setup(clear)
|
|
|
|
it('is working', function()
|
|
insert([[
|
|
Xabcdefghijkemnopqretuvwxyz
|
|
Yabcdefghijkemnopqretuvwxyz
|
|
Zabcdefghijkemnokqretkvwxyz]])
|
|
|
|
-- Check that "fe" and ";" work.
|
|
feed_command('/^X')
|
|
feed('ylfep;;p,,p')
|
|
-- Check that save/restore works.
|
|
feed_command('/^Y')
|
|
feed('ylfep')
|
|
feed_command('let csave = getcharsearch()')
|
|
feed('fip')
|
|
feed_command('call setcharsearch(csave)')
|
|
feed(';p;p')
|
|
-- Check that setcharsearch() changes the settings.
|
|
feed_command('/^Z')
|
|
feed('ylfep')
|
|
feed_command("call setcharsearch({'char': 'k'})")
|
|
feed(';p')
|
|
feed_command("call setcharsearch({'forward': 0})")
|
|
feed('$;p')
|
|
feed_command("call setcharsearch({'until': 1})")
|
|
feed(';;p')
|
|
|
|
-- Assert buffer contents.
|
|
expect([[
|
|
XabcdeXfghijkeXmnopqreXtuvwxyz
|
|
YabcdeYfghiYjkeYmnopqreYtuvwxyz
|
|
ZabcdeZfghijkZZemnokqretkZvwxyz]])
|
|
end)
|
|
end)
|