aboutsummaryrefslogtreecommitdiff
path: root/test/functional/testnvim.lua
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2024-06-12 19:31:15 -0500
committerGitHub <noreply@github.com>2024-06-12 19:31:15 -0500
commit6311a7fe4b416c23a336c1392a44cf3192ebde36 (patch)
treebcfb2a4d0f88ec56379f656831c8195ea3278d47 /test/functional/testnvim.lua
parent53afdf360cf195c02c22865f4e63b273d1ef152e (diff)
parent5493fcd52f2eaab4b6a81c366529e80ca3dec535 (diff)
downloadrneovim-6311a7fe4b416c23a336c1392a44cf3192ebde36.tar.gz
rneovim-6311a7fe4b416c23a336c1392a44cf3192ebde36.tar.bz2
rneovim-6311a7fe4b416c23a336c1392a44cf3192ebde36.zip
Merge pull request #29103 from gpanders/test-no-tgc
test: do not set termguicolors in test runner
Diffstat (limited to 'test/functional/testnvim.lua')
-rw-r--r--test/functional/testnvim.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/testnvim.lua b/test/functional/testnvim.lua
index 746c7290ef..5a9e7f8c29 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'
)