aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/term_util.vim
blob: 3a838a3a1fab64fc0b5a70a8a68fb0019154ae5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
" 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