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