term_util.vim 272 B

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