mirror of
https://github.com/neovim/neovim.git
synced 2026-08-02 21:59:11 +00:00
This is a port of these two patches combined: vim-patch:8.1.1524: tests are silently skipped Problem: Tests are silently skipped. Solution: Throw an exception for skipped tests in more places.b0f94c1ff3vim-patch:8.1.1544: some balloon tests don't run when they can Problem: Some balloon tests don't run when they can. Solution: Split GUI balloon tests off into a separate file. (Ozaki Kiichi, closes vim/vim#4538) Change the feature check into a command for consistency.b46fecd345Omit test_lua.vim: previous patches are N/A Omit test_memory_usage.vim: previous patches are N/A Omit test_textprop.vim: previous patches are N/A Omit test_winbar.vim: previous patches are N/A Omit test_termcodes.vim: mostly N/A Skip Test_mouse_positon() because it uses test_setmouse(). Cannot throw error in a Test_nocatch_ test. Use latest `CheckFeature clipboard_working` for test_quotestar.vim
55 lines
1.3 KiB
VimL
55 lines
1.3 KiB
VimL
" tests for 'langmap'
|
|
|
|
source check.vim
|
|
CheckFeature langmap
|
|
|
|
func Test_langmap()
|
|
new
|
|
set langmap=}l,^x,%v
|
|
|
|
call setline(1, ['abc'])
|
|
call feedkeys('gg0}^', 'tx')
|
|
call assert_equal('ac', getline(1))
|
|
|
|
" in Replace mode
|
|
" need silent! to avoid a delay when entering Insert mode
|
|
call setline(1, ['abcde'])
|
|
silent! call feedkeys("gg0lR%{z\<Esc>00", 'tx')
|
|
call assert_equal('a%{ze', getline(1))
|
|
|
|
" in Select mode
|
|
" need silent! to avoid a delay when entering Insert mode
|
|
call setline(1, ['abcde'])
|
|
silent! call feedkeys("gg0}%}\<C-G>}^\<Esc>00", 'tx')
|
|
call assert_equal('a}^de', getline(1))
|
|
|
|
" Error cases
|
|
call assert_fails('set langmap=aA,b', 'E357:')
|
|
call assert_fails('set langmap=z;y;y;z', 'E358:')
|
|
|
|
" Map character > 256
|
|
enew!
|
|
set langmap=āx,ăl,āx
|
|
call setline(1, ['abcde'])
|
|
call feedkeys('gg2lā', 'tx')
|
|
call assert_equal('abde', getline(1))
|
|
|
|
" special characters in langmap
|
|
enew!
|
|
call setline(1, ['Hello World'])
|
|
set langmap=\\;\\,,\\,\\;
|
|
call feedkeys('ggfo,', 'tx')
|
|
call assert_equal(8, col('.'))
|
|
call feedkeys(';', 'tx')
|
|
call assert_equal(5, col('.'))
|
|
set langmap&
|
|
set langmap=\\;\\,;\\,\\;
|
|
call feedkeys('ggfo,', 'tx')
|
|
call assert_equal(8, col('.'))
|
|
call feedkeys(';', 'tx')
|
|
call assert_equal(5, col('.'))
|
|
|
|
set langmap&
|
|
quit!
|
|
endfunc
|