mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00: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:
@@ -25,6 +25,22 @@ func CheckFunction(name)
|
|||||||
endif
|
endif
|
||||||
endfunc
|
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.
|
" Command to check that making screendumps is supported.
|
||||||
" Caller must source screendump.vim
|
" Caller must source screendump.vim
|
||||||
command CheckScreendump call CheckScreendump()
|
command CheckScreendump call CheckScreendump()
|
||||||
|
Reference in New Issue
Block a user