Mercurial > vim
view src/testdir/test_charsearch_utf8.vim @ 14361:0ea260db0c6e
Added tag v8.1.0195 for changeset e91659ae6614cd3eaacf7d016e7eea1728a47c13
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 19 Jul 2018 03:00: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