From aed8ce9da277f5ecffe968b324f242c41c3b752a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 10:50:31 +0200 Subject: Adding upstream version 2:9.0.1378. Signed-off-by: Daniel Baumann --- src/testdir/test_ex_undo.vim | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/testdir/test_ex_undo.vim (limited to 'src/testdir/test_ex_undo.vim') diff --git a/src/testdir/test_ex_undo.vim b/src/testdir/test_ex_undo.vim new file mode 100644 index 0000000..48a87df --- /dev/null +++ b/src/testdir/test_ex_undo.vim @@ -0,0 +1,21 @@ +" Tests for :undo + +func Test_ex_undo() + new ex-undo + setlocal ul=10 + exe "normal ione\n\" + setlocal ul=10 + exe "normal itwo\n\" + setlocal ul=10 + exe "normal ithree\n\" + 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 -- cgit v1.2.3