mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 17:36:29 +00:00

Problem: Shared functions for testing are disorganised.
Solution: Group finctions in script files. (Ozaki Kiichi, closes vim/vim#4573)
7a39dd7f00
12 lines
235 B
VimL
12 lines
235 B
VimL
" 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
|