view src/testdir/test_ex_undo.vim @ 16910:6a99709c6ae3 v8.1.1456

patch 8.1.1456: WinBar not redrawn after scrolling one line commit https://github.com/vim/vim/commit/98fb65cb051f625f4ce291a9f9cdb2e54ac1e688 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 2 20:33:32 2019 +0200 patch 8.1.1456: WinBar not redrawn after scrolling one line Problem: WinBar not redrawn after scrolling one line. Solution: Exclude the winbar height when deciding what to redraw. (closes #4473)
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jun 2019 20:45:04 +0200
parents 52b13e25b21d
children 08940efa6b4e
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