view src/testdir/test_charsearch_utf8.vim @ 14617:56ceaa0ad239 v8.1.0322

patch 8.1.0322: Test_copy_winopt() does not restore 'hidden' commit https://github.com/vim/vim/commit/7cb33a14c943c0b87dc61c1da438a443f8a43782 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 23 22:20:35 2018 +0200 patch 8.1.0322: Test_copy_winopt() does not restore 'hidden' Problem: Test_copy_winopt() does not restore 'hidden'. Solution: Restore the option, fix indent. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/3367)
author Christian Brabandt <cb@256bit.org>
date Thu, 23 Aug 2018 22:30:06 +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