vim-patch:8.1.1776: text added with a job isn't displayed

Problem:    Text added with a job to another buffer isn't displayed.
Solution:   Update topline after adding a line. (closes vim/vim#4745)
4641a122f2
This commit is contained in:
Jan Edmund Lazo 2020-08-28 23:42:07 -04:00
parent a45dc02a14
commit 1fbfd6ba09
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -25,6 +25,22 @@ func CheckFunction(name)
endif
endfunc
" Command to check for running on MS-Windows
command CheckMSWindows call CheckMSWindows()
func CheckMSWindows()
if !has('win32')
throw 'Skipped: only works on MS-Windows'
endif
endfunc
" Command to check for running on Unix
command CheckUnix call CheckUnix()
func CheckUnix()
if !has('unix')
throw 'Skipped: only works on Unix'
endif
endfunc
" Command to check that making screendumps is supported.
" Caller must source screendump.vim
command CheckScreendump call CheckScreendump()