blob: 5ff09e25b48cc376f9e05aeb48dc22099a7ed495 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" Functions about terminal shared by several tests
" Only load this script once.
if exists('*CanRunVimInTerminal')
finish
endif
func CanRunVimInTerminal()
" Nvim: always false, we use Lua screen-tests instead.
return 0
endfunc
" vim: shiftwidth=2 sts=2 expandtab
|