comparison src/testdir/test_display.vim @ 17618:9695e9fed059 v8.1.1806

patch 8.1.1806: test for display updating doesn't check without statusline commit https://github.com/vim/vim/commit/7cc535175a233c6f02cdb5a364b3590560f5bfcb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 3 23:30:21 2019 +0200 patch 8.1.1806: test for display updating doesn't check without statusline Problem: Test for display updating doesn't check without statusline. Solution: Add screenshots without a status line.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Aug 2019 23:45:05 +0200
parents d7708560b77c
children 851a014dfd8b
comparison
equal deleted inserted replaced
17617:2a583a80c0bf 17618:9695e9fed059
86 call VerifyScreenDump(buf, 'Test_scroll_no_region_2', {}) 86 call VerifyScreenDump(buf, 'Test_scroll_no_region_2', {})
87 87
88 call term_sendkeys(buf, ":4put\<cr>") 88 call term_sendkeys(buf, ":4put\<cr>")
89 call VerifyScreenDump(buf, 'Test_scroll_no_region_3', {}) 89 call VerifyScreenDump(buf, 'Test_scroll_no_region_3', {})
90 90
91 call term_sendkeys(buf, ":undo\<cr>")
92 call term_sendkeys(buf, ":undo\<cr>")
93 call term_sendkeys(buf, ":set laststatus=0\<cr>")
94 call VerifyScreenDump(buf, 'Test_scroll_no_region_4', {})
95
96 call term_sendkeys(buf, ":3delete\<cr>")
97 call VerifyScreenDump(buf, 'Test_scroll_no_region_5', {})
98
99 call term_sendkeys(buf, ":4put\<cr>")
100 call VerifyScreenDump(buf, 'Test_scroll_no_region_6', {})
101
91 " clean up 102 " clean up
92 call StopVimInTerminal(buf) 103 call StopVimInTerminal(buf)
93 call delete('Xtestscroll') 104 call delete('Xtestscroll')
94 endfunc 105 endfunc