diff options
author | Gregory Anders <greg@gpanders.com> | 2024-05-30 19:57:47 -0500 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2024-05-31 08:25:35 -0500 |
commit | d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c (patch) | |
tree | 0038a6861570fd0c0ab7bdd2f73f7c3bfd6c5d5e /test/functional/testnvim.lua | |
parent | 88fe467b194f21cace92109dffc68e8b1362be3e (diff) | |
download | rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.tar.gz rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.tar.bz2 rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.zip |
test: do not set termguicolors in test runner
It's not clear why this is needed and it has adverse side effects on
other tests.
Diffstat (limited to 'test/functional/testnvim.lua')
-rw-r--r-- | test/functional/testnvim.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/testnvim.lua b/test/functional/testnvim.lua index 6b858e4d69..5f24ef3fe6 100644 --- a/test/functional/testnvim.lua +++ b/test/functional/testnvim.lua @@ -22,7 +22,7 @@ local runtime_set = 'set runtimepath^=./build/lib/nvim/' M.nvim_prog = (os.getenv('NVIM_PRG') or t.paths.test_build_dir .. '/bin/nvim') -- Default settings for the test session. M.nvim_set = ( - 'set shortmess+=IS background=light termguicolors noswapfile noautoindent startofline' + 'set shortmess+=IS background=light noswapfile noautoindent startofline' .. ' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' .. ' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid' ) |