mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
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:
parent
a45dc02a14
commit
1fbfd6ba09
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user