view src/testdir/test_ex_undo.vim @ 32447:f5946a50c931 v9.0.1555

patch 9.0.1555: setcharsearch() does not clear last searched char properly Commit: https://github.com/vim/vim/commit/e5d91ba1de83949eb9357c0fb8cbd91e7e69be6f Author: zeertzjq <zeertzjq@outlook.com> Date: Sun May 14 17:39:18 2023 +0100 patch 9.0.1555: setcharsearch() does not clear last searched char properly Problem: setcharsearch() does not clear last searched char properly. Solution: Do not accept lastc_bytelen smaller than one. (closes https://github.com/vim/vim/issues/12398)
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 May 2023 18:45:03 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Tests for :undo

func Test_ex_undo()
  new ex-undo
  setlocal ul=10
  exe "normal ione\n\<Esc>"
  setlocal ul=10
  exe "normal itwo\n\<Esc>"
  setlocal ul=10
  exe "normal ithree\n\<Esc>"
  call assert_equal(4, line('$'))
  undo
  call assert_equal(3, line('$'))
  undo 1
  call assert_equal(2, line('$'))
  undo 0
  call assert_equal(1, line('$'))
  quit!
endfunc

" vim: shiftwidth=2 sts=2 expandtab