mirror of
https://github.com/neovim/neovim.git
synced 2026-08-03 14:19:15 +00:00
Problem: various code is not properly tested.
Solution: Add more tests. (Yegappan Lakshmanan, closes vim/vim#5871)
cde0ff39da
Cherry-pick test_clientserver.vim change from patch 8.1.1826.
Cherry-pick a comment from patch 8.2.0301.
Omit test_viminfo.vim.
14 lines
272 B
VimL
14 lines
272 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
|
|
|
|
" vim: shiftwidth=2 sts=2 expandtab
|