diff options
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 5780d0a978..449c3ab9d8 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -28,17 +28,16 @@ module.nvim_prog = ( ) -- Default settings for the test session. module.nvim_set = ( - 'set shortmess+=IS background=light noswapfile noautoindent startofline' + 'set shortmess+=IS background=light termguicolors noswapfile noautoindent startofline' ..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' - ..' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid' - ..' notermguicolors') + ..' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid') module.nvim_argv = { module.nvim_prog, '-u', 'NONE', '-i', 'NONE', -- XXX: find treesitter parsers. '--cmd', runtime_set, '--cmd', module.nvim_set, - '--cmd', 'mapclear', - '--cmd', 'mapclear!', + -- Remove default mappings. + '--cmd', 'mapclear | mapclear!', -- Make screentest work after changing to the new default color scheme -- Source 'vim' color scheme without side effects -- TODO: rewrite tests |