2017-04-19 04:01:41 -07: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
|
2024-01-12 10:59:57 -07:00
|
|
|
|
local fn = helpers.fn
|
|
|
|
|
local api = helpers.api
|
2021-08-17 06:56:37 -07:00
|
|
|
|
local insert = helpers.insert
|
2017-04-19 04:01:41 -07:00
|
|
|
|
|
|
|
|
|
describe('macros', function()
|
2023-12-26 16:26:18 -07:00
|
|
|
|
before_each(function()
|
|
|
|
|
clear({ args_rm = { '--cmd' } })
|
|
|
|
|
end)
|
2017-04-19 04:01:41 -07:00
|
|
|
|
it('can be recorded and replayed', function()
|
|
|
|
|
feed('qiahello<esc>q')
|
|
|
|
|
expect('hello')
|
2022-04-25 20:35:05 -07:00
|
|
|
|
eq('ahello', eval('@i'))
|
2017-04-19 04:01:41 -07:00
|
|
|
|
feed('@i')
|
|
|
|
|
expect('hellohello')
|
2022-04-25 20:35:05 -07:00
|
|
|
|
eq('ahello', eval('@i'))
|
2017-04-19 04:01:41 -07:00
|
|
|
|
end)
|
|
|
|
|
it('applies maps', function()
|
|
|
|
|
command('imap x l')
|
|
|
|
|
command('nmap l a')
|
|
|
|
|
feed('qilxxx<esc>q')
|
|
|
|
|
expect('lll')
|
2022-04-25 20:35:05 -07:00
|
|
|
|
eq('lxxx', eval('@i'))
|
2017-04-19 04:01:41 -07:00
|
|
|
|
feed('@i')
|
|
|
|
|
expect('llllll')
|
2022-04-25 20:35:05 -07:00
|
|
|
|
eq('lxxx', eval('@i'))
|
2017-04-19 04:01:41 -07:00
|
|
|
|
end)
|
2021-08-17 06:56:37 -07:00
|
|
|
|
|
|
|
|
|
it('can be replayed with Q', function()
|
|
|
|
|
insert [[hello
|
|
|
|
|
hello
|
|
|
|
|
hello]]
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
|
|
|
|
|
feed [[qqAFOO<esc>q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2021-08-17 06:56:37 -07:00
|
|
|
|
|
|
|
|
|
feed [[Q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOOFOO', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2021-08-17 06:56:37 -07:00
|
|
|
|
|
|
|
|
|
feed [[G3Q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOOFOO', 'hello', 'helloFOOFOOFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[ggV3jQ]]
|
2024-01-12 06:11:28 -07:00
|
|
|
|
eq(
|
|
|
|
|
{ 'helloFOOFOOFOO', 'helloFOO', 'helloFOOFOOFOOFOO' },
|
2024-01-12 10:59:57 -07:00
|
|
|
|
api.nvim_buf_get_lines(0, 0, -1, false)
|
2024-01-12 06:11:28 -07:00
|
|
|
|
)
|
2023-12-26 16:26:18 -07:00
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('can be replayed with @', function()
|
|
|
|
|
insert [[hello
|
|
|
|
|
hello
|
|
|
|
|
hello]]
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
|
|
|
|
|
feed [[qqAFOO<esc>q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[Q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOOFOO', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[G3@@]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOOFOO', 'hello', 'helloFOOFOOFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[ggV2j@@]]
|
2024-01-12 06:11:28 -07:00
|
|
|
|
eq(
|
|
|
|
|
{ 'helloFOOFOOFOO', 'helloFOO', 'helloFOOFOOFOOFOO' },
|
2024-01-12 10:59:57 -07:00
|
|
|
|
api.nvim_buf_get_lines(0, 0, -1, false)
|
2024-01-12 06:11:28 -07:00
|
|
|
|
)
|
2023-12-26 16:26:18 -07:00
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('can be replayed with @q and @w', function()
|
|
|
|
|
insert [[hello
|
|
|
|
|
hello
|
|
|
|
|
hello]]
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
|
|
|
|
|
feed [[qqAFOO<esc>qu]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'hello', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[qwA123<esc>qu]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'hello', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[V3j@q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO', 'helloFOO', 'helloFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
feed [[Vj@w]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO123', 'helloFOO123', 'helloFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('can be replayed with @q and @w visual-block', function()
|
|
|
|
|
insert [[hello
|
|
|
|
|
hello
|
|
|
|
|
hello]]
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
|
|
|
|
|
feed [[qqAFOO<esc>qu]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'hello', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[qwA123<esc>qu]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'hello', 'hello', 'hello' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[<C-v>3j@q]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO', 'helloFOO', 'helloFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2023-12-26 16:26:18 -07:00
|
|
|
|
|
|
|
|
|
feed [[gg]]
|
|
|
|
|
feed [[<C-v>j@w]]
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ 'helloFOO123', 'helloFOO123', 'helloFOO' }, api.nvim_buf_get_lines(0, 0, -1, false))
|
2021-08-17 06:56:37 -07:00
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
|
2022-04-07 06:13:09 -07:00
|
|
|
|
describe('immediately after a macro has finished executing,', function()
|
|
|
|
|
before_each(function()
|
2023-12-26 16:26:18 -07:00
|
|
|
|
clear()
|
2022-04-07 06:13:09 -07:00
|
|
|
|
command([[let @a = 'gg0']])
|
|
|
|
|
end)
|
|
|
|
|
|
2022-04-06 23:27:47 -07: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')
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq('', fn.reg_executing())
|
2022-04-06 23:27:47 -07:00
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
it('if the macro ends with a <Nop> mapping', function()
|
|
|
|
|
command('nnoremap 0 <Nop>')
|
|
|
|
|
feed('@a')
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq('', fn.reg_executing())
|
2022-04-06 23:27:47 -07:00
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
|
2022-04-07 06:13:09 -07: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
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ mode = 'n', blocking = false }, api.nvim_get_mode())
|
2022-04-07 06:13:09 -07:00
|
|
|
|
expect('')
|
|
|
|
|
eq('', eval('@a'))
|
|
|
|
|
end)
|
2021-08-17 06:56:37 -07:00
|
|
|
|
|
2022-04-07 06:13:09 -07: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
|
2024-01-12 10:59:57 -07:00
|
|
|
|
eq({ mode = 'n', blocking = false }, api.nvim_get_mode())
|
2022-04-07 06:13:09 -07:00
|
|
|
|
expect('')
|
|
|
|
|
eq('', eval('@a'))
|
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
end)
|
|
|
|
|
|
|
|
|
|
describe('reg_recorded()', function()
|
2023-12-26 16:26:18 -07:00
|
|
|
|
before_each(clear)
|
2021-08-17 06:56:37 -07:00
|
|
|
|
it('returns the correct value', function()
|
|
|
|
|
feed [[qqyyq]]
|
|
|
|
|
eq('q', eval('reg_recorded()'))
|
|
|
|
|
end)
|
2017-04-19 04:01:41 -07:00
|
|
|
|
end)
|