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.
86 lines
2.3 KiB
Lua
86 lines
2.3 KiB
Lua
-- Tests for Unicode manipulations
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
|
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
|
local command, expect = helpers.command, helpers.expect
|
|
local eq, eval = helpers.eq, helpers.eval
|
|
local source = helpers.source
|
|
local wait = helpers.wait
|
|
|
|
describe('utf8', function()
|
|
before_each(clear)
|
|
|
|
it('is working', function()
|
|
insert('start:')
|
|
|
|
command('new')
|
|
command('call setline(1, ["aaa", "あああ", "bbb"])')
|
|
|
|
-- Visual block Insert adjusts for multi-byte char
|
|
feed('gg0l<C-V>jjIx<Esc>')
|
|
wait()
|
|
|
|
command('let r = getline(1, "$")')
|
|
command('bwipeout!')
|
|
command('$put=r')
|
|
command('call garbagecollect(1)')
|
|
|
|
expect([[
|
|
start:
|
|
axaa
|
|
xあああ
|
|
bxbb]])
|
|
end)
|
|
|
|
it('strchars()', function()
|
|
eq(1, eval('strchars("a")'))
|
|
eq(1, eval('strchars("a", 0)'))
|
|
eq(1, eval('strchars("a", 1)'))
|
|
|
|
eq(3, eval('strchars("あいa")'))
|
|
eq(3, eval('strchars("あいa", 0)'))
|
|
eq(3, eval('strchars("あいa", 1)'))
|
|
|
|
eq(2, eval('strchars("A\\u20dd")'))
|
|
eq(2, eval('strchars("A\\u20dd", 0)'))
|
|
eq(1, eval('strchars("A\\u20dd", 1)'))
|
|
|
|
eq(3, eval('strchars("A\\u20dd\\u20dd")'))
|
|
eq(3, eval('strchars("A\\u20dd\\u20dd", 0)'))
|
|
eq(1, eval('strchars("A\\u20dd\\u20dd", 1)'))
|
|
|
|
eq(1, eval('strchars("\\u20dd")'))
|
|
eq(1, eval('strchars("\\u20dd", 0)'))
|
|
eq(1, eval('strchars("\\u20dd", 1)'))
|
|
end)
|
|
|
|
it('customlist completion', function()
|
|
source([[
|
|
function! CustomComplete1(lead, line, pos)
|
|
return ['あ', 'い']
|
|
endfunction
|
|
command -nargs=1 -complete=customlist,CustomComplete1 Test1 echo]])
|
|
feed(":Test1 <C-L>'<C-B>$put='<CR>")
|
|
|
|
source([[
|
|
function! CustomComplete2(lead, line, pos)
|
|
return ['あたし', 'あたま', 'あたりめ']
|
|
endfunction
|
|
command -nargs=1 -complete=customlist,CustomComplete2 Test2 echo]])
|
|
feed(":Test2 <C-L>'<C-B>$put='<CR>")
|
|
|
|
source([[
|
|
function! CustomComplete3(lead, line, pos)
|
|
return ['Nこ', 'Nん', 'Nぶ']
|
|
endfunction
|
|
command -nargs=1 -complete=customlist,CustomComplete3 Test3 echo]])
|
|
feed(":Test3 <C-L>'<C-B>$put='<CR>")
|
|
|
|
expect([[
|
|
|
|
Test1
|
|
Test2 あた
|
|
Test3 N]])
|
|
end)
|
|
end)
|