2017-04-19 06:01:41 -05:00
|
|
|
|
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
|
2022-04-07 01:27:47 -05:00
|
|
|
|
local funcs = helpers.funcs
|
2022-04-07 08:13:09 -05:00
|
|
|
|
local meths = helpers.meths
|
2021-08-17 08:56:37 -05:00
|
|
|
|
local insert = helpers.insert
|
|
|
|
|
local curbufmeths = helpers.curbufmeths
|
2017-04-19 06:01:41 -05:00
|
|
|
|
|
2022-04-07 08:13:09 -05:00
|
|
|
|
before_each(clear)
|
|
|
|
|
|
2017-04-19 06:01:41 -05:00
|
|
|
|
describe('macros', function()
|
|
|
|
|
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)
|
2021-08-17 08:56:37 -05:00
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
2022-04-07 08:13:09 -05:00
|
|
|
|
describe('immediately after a macro has finished executing,', function()
|
|
|
|
|
before_each(function()
|
|
|
|
|
command([[let @a = 'gg0']])
|
|
|
|
|
end)
|
|
|
|
|
|
2022-04-07 01:27:47 -05:00
|
|
|
|
describe('reg_executing() from RPC returns an empty string', function()
|
|
|
|
|
it('if the macro does not end with a <Nop> mapping', function()
|
|
|
|
|
feed('@a')
|
|
|
|
|
eq('', funcs.reg_executing())
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('if the macro ends with a <Nop> mapping', function()
|
|
|
|
|
command('nnoremap 0 <Nop>')
|
|
|
|
|
feed('@a')
|
|
|
|
|
eq('', funcs.reg_executing())
|
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
|
2022-04-07 08:13:09 -05:00
|
|
|
|
describe('characters from a mapping are not treated as a part of the macro #18015', function()
|
|
|
|
|
before_each(function()
|
|
|
|
|
command('nnoremap s qa')
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('if the macro does not end with a <Nop> mapping', function()
|
|
|
|
|
feed('@asq') -- "q" from "s" mapping should start recording a macro instead of being no-op
|
|
|
|
|
eq({mode = 'n', blocking = false}, meths.get_mode())
|
|
|
|
|
expect('')
|
|
|
|
|
eq('', eval('@a'))
|
|
|
|
|
end)
|
2021-08-17 08:56:37 -05:00
|
|
|
|
|
2022-04-07 08:13:09 -05:00
|
|
|
|
it('if the macro ends with a <Nop> mapping', function()
|
|
|
|
|
command('nnoremap 0 <Nop>')
|
|
|
|
|
feed('@asq') -- "q" from "s" mapping should start recording a macro instead of being no-op
|
|
|
|
|
eq({mode = 'n', blocking = false}, meths.get_mode())
|
|
|
|
|
expect('')
|
|
|
|
|
eq('', eval('@a'))
|
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
describe('reg_recorded()', function()
|
2021-08-17 08:56:37 -05:00
|
|
|
|
it('returns the correct value', function()
|
|
|
|
|
feed [[qqyyq]]
|
|
|
|
|
eq('q', eval('reg_recorded()'))
|
|
|
|
|
end)
|
2017-04-19 06:01:41 -05:00
|
|
|
|
end)
|