1
0
forked from aniani/vim

patch 8.0.1653: screen dump is made too soon

Problem:    Screen dump is made too soon.
Solution:   Wait until the ruler is displayed. (Ozaki Kiichi, closes #2755)
This commit is contained in:
Bram Moolenaar
2018-03-29 17:40:46 +02:00
parent f06b0b6c8f
commit 1834d37396
6 changed files with 11 additions and 4 deletions

View File

@@ -975,7 +975,7 @@ endfunction
func Check_dump01(off)
call assert_equal('one two three four five', trim(getline(a:off + 1)))
call assert_equal('~ Select Word', trim(getline(a:off + 7)))
call assert_equal(':popup PopUp :', trim(getline(a:off + 20)))
call assert_equal(':popup PopUp', trim(getline(a:off + 20)))
endfunc
func Test_terminal_dumpwrite_composing()