diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-12-06 10:55:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 10:55:50 -0800 |
commit | 08545bd45b80e3056fc8c6c4eb25e2ef1fddd897 (patch) | |
tree | 798ac51dc30ebc95617ffdbaaa4c474d70b3d226 /test/functional/helpers.lua | |
parent | ca7f8786a0eb578895400e23cd21e25cc0f91800 (diff) | |
parent | a5a346678a8211ea07f318de42e557ad3909f65e (diff) | |
download | rneovim-08545bd45b80e3056fc8c6c4eb25e2ef1fddd897.tar.gz rneovim-08545bd45b80e3056fc8c6c4eb25e2ef1fddd897.tar.bz2 rneovim-08545bd45b80e3056fc8c6c4eb25e2ef1fddd897.zip |
Merge pull request #26407 from gpanders/default-tgc
feat(defaults): enable 'termguicolors' by default when supported by terminal
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index b50df4c677..5780d0a978 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -30,7 +30,8 @@ module.nvim_prog = ( module.nvim_set = ( 'set shortmess+=IS background=light noswapfile noautoindent startofline' ..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' - ..' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid') + ..' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid' + ..' notermguicolors') module.nvim_argv = { module.nvim_prog, '-u', 'NONE', '-i', 'NONE', -- XXX: find treesitter parsers. |