view src/testdir/test_ex_undo.vim @ 30188:ba22d5536d3e v9.0.0430

patch 9.0.0430: cannot use repeat() with a blob Commit: https://github.com/vim/vim/commit/375141e1f80dced9be738568a3418f65813f4a2f Author: Bakudankun <bakudankun@gmail.com> Date: Fri Sep 9 18:46:47 2022 +0100 patch 9.0.0430: cannot use repeat() with a blob Problem: Cannot use repeat() with a blob. Solution: Implement blob repeat. (closes https://github.com/vim/vim/issues/11090)
author Bram Moolenaar <Bram@vim.org>
date Fri, 09 Sep 2022 20:00:05 +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