mirror of
https://github.com/neovim/neovim.git
synced 2025-09-08 20:38:18 +00:00

feat(eval): add reg_recorded() This function is used the get the last recorded register. style(Recording): rename handler to match suggestions fix(RecordingLeave): send autocommand earlier This makes the autocommand fire just before setting reg_recorded to reg_recording, this way we clearly show that we are actually just before actually quitting the recording mode.
58 lines
1.3 KiB
Lua
58 lines
1.3 KiB
Lua
local helpers = require('test.functional.helpers')(after_each)
|
||
|
||
local eq = helpers.eq
|
||
local eval = helpers.eval
|
||
local feed = helpers.feed
|
||
local clear = helpers.clear
|
||
local expect = helpers.expect
|
||
local command = helpers.command
|
||
local insert = helpers.insert
|
||
local curbufmeths = helpers.curbufmeths
|
||
|
||
describe('macros', function()
|
||
before_each(clear)
|
||
it('can be recorded and replayed', function()
|
||
feed('qiahello<esc>q')
|
||
expect('hello')
|
||
eq(eval('@i'), 'ahello')
|
||
feed('@i')
|
||
expect('hellohello')
|
||
eq(eval('@i'), 'ahello')
|
||
end)
|
||
it('applies maps', function()
|
||
command('imap x l')
|
||
command('nmap l a')
|
||
feed('qilxxx<esc>q')
|
||
expect('lll')
|
||
eq(eval('@i'), 'lxxx')
|
||
feed('@i')
|
||
expect('llllll')
|
||
eq(eval('@i'), 'lxxx')
|
||
end)
|
||
|
||
it('can be replayed with Q', function()
|
||
insert [[hello
|
||
hello
|
||
hello]]
|
||
feed [[gg]]
|
||
|
||
feed [[qqAFOO<esc>q]]
|
||
eq({'helloFOO', 'hello', 'hello'}, curbufmeths.get_lines(0, -1, false))
|
||
|
||
feed[[Q]]
|
||
eq({'helloFOOFOO', 'hello', 'hello'}, curbufmeths.get_lines(0, -1, false))
|
||
|
||
feed[[G3Q]]
|
||
eq({'helloFOOFOO', 'hello', 'helloFOOFOOFOO'}, curbufmeths.get_lines(0, -1, false))
|
||
end)
|
||
end)
|
||
|
||
describe('reg_recorded()', function()
|
||
before_each(clear)
|
||
|
||
it('returns the correct value', function()
|
||
feed [[qqyyq]]
|
||
eq('q', eval('reg_recorded()'))
|
||
end)
|
||
end)
|