2014-12-23 04:24:54 -07:00
|
|
|
|
-- Test for mappings and abbreviations
|
|
|
|
|
|
2016-04-23 16:53:11 -07:00
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2014-12-23 04:24:54 -07:00
|
|
|
|
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
2017-04-08 14:12:26 -07:00
|
|
|
|
local feed_command, expect, wait = helpers.feed_command, helpers.expect, helpers.wait
|
2014-12-23 04:24:54 -07:00
|
|
|
|
|
|
|
|
|
describe('mapping', function()
|
2015-09-07 19:27:21 -07:00
|
|
|
|
before_each(clear)
|
2014-12-23 04:24:54 -07:00
|
|
|
|
|
2015-12-18 18:03:17 -07:00
|
|
|
|
it('abbreviations with р (0x80)', function()
|
2014-12-23 04:24:54 -07:00
|
|
|
|
insert([[
|
|
|
|
|
test starts here:
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
|
|
-- Abbreviations with р (0x80) should work.
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('inoreab чкпр vim')
|
2015-02-18 09:16:30 -07:00
|
|
|
|
feed('GAчкпр <esc>')
|
2014-12-23 04:24:54 -07:00
|
|
|
|
|
2015-12-18 18:03:17 -07:00
|
|
|
|
expect([[
|
|
|
|
|
test starts here:
|
|
|
|
|
vim ]])
|
|
|
|
|
end)
|
|
|
|
|
|
2016-01-12 22:39:54 -07:00
|
|
|
|
it('Ctrl-c works in Insert mode', function()
|
2015-12-18 18:03:17 -07:00
|
|
|
|
-- Mapping of ctrl-c in insert mode
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('set cpo-=< cpo-=k')
|
|
|
|
|
feed_command('inoremap <c-c> <ctrl-c>')
|
|
|
|
|
feed_command('cnoremap <c-c> dummy')
|
|
|
|
|
feed_command('cunmap <c-c>')
|
2015-12-18 18:03:17 -07:00
|
|
|
|
feed('GA<cr>')
|
|
|
|
|
feed('TEST2: CTRL-C |')
|
|
|
|
|
wait()
|
|
|
|
|
feed('<c-c>A|<cr><esc>')
|
|
|
|
|
wait()
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('unmap <c-c>')
|
|
|
|
|
feed_command('unmap! <c-c>')
|
2015-12-18 18:03:17 -07:00
|
|
|
|
|
|
|
|
|
expect([[
|
2017-04-08 14:12:26 -07:00
|
|
|
|
|
2015-12-18 18:03:17 -07:00
|
|
|
|
TEST2: CTRL-C |<ctrl-c>A|
|
|
|
|
|
]])
|
|
|
|
|
end)
|
|
|
|
|
|
2016-01-12 22:39:54 -07:00
|
|
|
|
it('Ctrl-c works in Visual mode', function()
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command([[vnoremap <c-c> :<C-u>$put ='vmap works'<cr>]])
|
2015-12-18 18:03:17 -07:00
|
|
|
|
feed('GV')
|
2016-01-12 22:39:54 -07:00
|
|
|
|
-- XXX: For some reason the mapping is only triggered
|
|
|
|
|
-- when <C-c> is in a separate feed command.
|
2015-12-18 18:03:17 -07:00
|
|
|
|
wait()
|
|
|
|
|
feed('<c-c>')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('vunmap <c-c>')
|
2015-12-18 18:03:17 -07:00
|
|
|
|
|
|
|
|
|
expect([[
|
2017-04-08 14:12:26 -07:00
|
|
|
|
|
2015-12-18 18:03:17 -07:00
|
|
|
|
vmap works]])
|
|
|
|
|
end)
|
|
|
|
|
|
2016-01-12 22:39:54 -07:00
|
|
|
|
it('langmap', function()
|
2014-12-26 08:49:44 -07:00
|
|
|
|
-- langmap should not get remapped in insert mode.
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('inoremap { FAIL_ilangmap')
|
|
|
|
|
feed_command('set langmap=+{ langnoremap')
|
2014-12-26 08:49:44 -07:00
|
|
|
|
feed('o+<esc>')
|
|
|
|
|
|
2015-07-21 06:11:56 -07:00
|
|
|
|
-- Insert mode expr mapping with langmap.
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('inoremap <expr> { "FAIL_iexplangmap"')
|
2014-12-26 08:49:44 -07:00
|
|
|
|
feed('o+<esc>')
|
|
|
|
|
|
2015-07-21 06:11:56 -07:00
|
|
|
|
-- langmap should not get remapped in cmdline mode.
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('cnoremap { FAIL_clangmap')
|
2015-07-21 06:11:56 -07:00
|
|
|
|
feed('o+<esc>')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('cunmap {')
|
2015-07-21 06:11:56 -07:00
|
|
|
|
|
|
|
|
|
-- cmdline mode expr mapping with langmap.
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('cnoremap <expr> { "FAIL_cexplangmap"')
|
2015-07-21 06:11:56 -07:00
|
|
|
|
feed('o+<esc>')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('cunmap {')
|
2015-02-18 09:16:30 -07:00
|
|
|
|
|
2014-12-23 04:24:54 -07:00
|
|
|
|
-- Assert buffer contents.
|
|
|
|
|
expect([[
|
2017-04-08 14:12:26 -07:00
|
|
|
|
|
2014-12-26 08:49:44 -07:00
|
|
|
|
+
|
2015-07-21 06:11:56 -07:00
|
|
|
|
+
|
|
|
|
|
+
|
2014-12-26 08:49:44 -07:00
|
|
|
|
+]])
|
2014-12-23 04:24:54 -07:00
|
|
|
|
end)
|
2015-09-07 19:27:21 -07:00
|
|
|
|
|
2016-01-13 20:19:15 -07:00
|
|
|
|
it('feedkeys', function()
|
|
|
|
|
insert([[
|
|
|
|
|
a b c d
|
|
|
|
|
a b c d
|
|
|
|
|
]])
|
|
|
|
|
|
|
|
|
|
-- Vim's issue #212 (feedkeys insert mapping at current position)
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('nnoremap . :call feedkeys(".", "in")<cr>')
|
2016-01-13 20:19:15 -07:00
|
|
|
|
feed('/^a b<cr>')
|
|
|
|
|
feed('0qqdw.ifoo<esc>qj0@q<esc>')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('unmap .')
|
2016-01-13 20:19:15 -07:00
|
|
|
|
expect([[
|
|
|
|
|
fooc d
|
|
|
|
|
fooc d
|
|
|
|
|
]])
|
|
|
|
|
end)
|
|
|
|
|
|
2015-09-07 19:27:21 -07:00
|
|
|
|
it('i_CTRL-G_U', function()
|
|
|
|
|
-- <c-g>U<cursor> works only within a single line
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('imapclear')
|
|
|
|
|
feed_command('imap ( ()<c-g>U<left>')
|
2015-09-07 19:27:21 -07:00
|
|
|
|
feed('G2o<esc>ki<cr>Test1: text with a (here some more text<esc>k.')
|
|
|
|
|
-- test undo
|
|
|
|
|
feed('G2o<esc>ki<cr>Test2: text wit a (here some more text [und undo]<c-g>u<esc>k.u')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command('imapclear')
|
|
|
|
|
feed_command('set whichwrap=<,>,[,]')
|
2015-09-07 19:27:21 -07:00
|
|
|
|
feed('G3o<esc>2k')
|
2017-04-08 14:12:26 -07:00
|
|
|
|
feed_command([[:exe ":norm! iTest3: text with a (parenthesis here\<C-G>U\<Right>new line here\<esc>\<up>\<up>."]])
|
2015-09-07 19:27:21 -07:00
|
|
|
|
|
|
|
|
|
expect([[
|
2017-04-08 14:12:26 -07:00
|
|
|
|
|
|
|
|
|
|
2015-09-07 19:27:21 -07:00
|
|
|
|
Test1: text with a (here some more text)
|
|
|
|
|
Test1: text with a (here some more text)
|
2017-04-08 14:12:26 -07:00
|
|
|
|
|
|
|
|
|
|
2015-09-07 19:27:21 -07:00
|
|
|
|
Test2: text wit a (here some more text [und undo])
|
|
|
|
|
new line here
|
|
|
|
|
Test3: text with a (parenthesis here
|
|
|
|
|
new line here
|
|
|
|
|
]])
|
|
|
|
|
end)
|
2014-12-23 04:24:54 -07:00
|
|
|
|
end)
|