view src/testdir/test_charsearch_utf8.vim @ 22618:c2d8b596dd0f v8.2.1857

patch 8.2.1857: Vim9: using job_status() on an unused var gives an error Commit: https://github.com/vim/vim/commit/218450ad5ea1f9f033b06754a29502d86100ff65 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 17 18:51:52 2020 +0200 patch 8.2.1857: Vim9: using job_status() on an unused var gives an error Problem: Vim9: using job_status() on an unused var gives an error. Solution: Return "fail". (closes https://github.com/vim/vim/issues/7158)
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Oct 2020 19:00:05 +0200
parents 2dcaa860e3fc
children f5946a50c931
line wrap: on
line source

" Tests for related f{char} and t{char} using utf-8.

" Test for t,f,F,T movement commands
func 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!
endfunc

" vim: shiftwidth=2 sts=2 expandtab