blob: 57a8eb57b8e40544146f0f2d21b15e70d4543599 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
source shared.vim
source term_util.vim
" Command to check that making screendumps is supported.
" Caller must source screendump.vim
command CheckScreendump call CheckScreendump()
func CheckScreendump()
if !CanRunVimInTerminal()
throw 'Skipped: cannot make screendumps'
endif
endfunc
|