Mercurial > vim
view src/testdir/test_charsearch_utf8.vim @ 32679:1b9a29f7fe86 v9.0.1670
patch 9.0.1670: resetting local option to global value is inconsistent
Commit: https://github.com/vim/vim/commit/bf5f189e449d6517239b79804d7a422a46946838
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jun 27 21:51:07 2023 +0100
patch 9.0.1670: resetting local option to global value is inconsistent
Problem: Resetting local option to global value is inconsistent.
Solution: Handle "<" specifically for 'scrolloff' and 'sidescrolloff'.
(closes #12594)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 27 Jun 2023 23:00:04 +0200 |
parents | 695b50472e85 |
children |
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('.')) call assert_equal('最', getcharsearch().char) call setcharsearch({'char' : ''}) call assert_equal('', getcharsearch().char) call assert_beeps('normal ;') call assert_equal([0, 1, 28, 0], getpos('.')) call assert_beeps('normal ,') call assert_equal([0, 1, 28, 0], getpos('.')) bw! endfunc " vim: shiftwidth=2 sts=2 expandtab