Mercurial > vim
view src/testdir/test_charsearch_utf8.vim @ 11930:c9767bd7bef6
Added tag v8.0.0844 for changeset 3457728d1a58f1cacc0b1550be91b4a38d346e01
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 02 Aug 2017 23:30:05 +0200 |
parents | 95c646fd8d9b |
children | 63b02fcf1361 |
line wrap: on
line source
" Tests for related f{char} and t{char} using utf-8. if !has('multi_byte') finish endif " Test for t,f,F,T movement commands function! Test_search_cmds() new! call setline(1, "・最初から最後まで最強のVimは最高") 1 normal! f最 call assert_equal([0, 1, 4, 0], getpos('.')) normal! ; call assert_equal([0, 1, 16, 0], getpos('.')) normal! 2; call assert_equal([0, 1, 43, 0], getpos('.')) normal! , call assert_equal([0, 1, 28, 0], getpos('.')) bw! endfunction " vim: shiftwidth=2 sts=2 expandtab