test: set 'nomore' by default (#6360)

Escaping from a '-- More --' prompt in tests is awkward as it doesn't
take keys from the typebuffer, requiring a call to `feed()` in lua at
the correct time. Moreover, it's rarer that a test will want the
'-- More --' prompt to be activated than not.
This commit is contained in:
Matthew Malcomson 2017-03-30 18:00:34 +01:00 committed by Justin M. Keyes
parent 75b98f7c3f
commit 66b336d89b
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ local nvim_prog = os.getenv('NVIM_PROG') or os.getenv('NVIM_PRG') or 'build/bin/
-- Default settings for the test session. -- Default settings for the test session.
local nvim_set = 'set shortmess+=I background=light noswapfile noautoindent' local nvim_set = 'set shortmess+=I background=light noswapfile noautoindent'
..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' ..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.'
..' belloff= noshowcmd noruler' ..' belloff= noshowcmd noruler nomore'
local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N', local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '-N',
'--cmd', nvim_set, '--embed'} '--cmd', nvim_set, '--embed'}

View File

@ -16,7 +16,7 @@ describe(':highlight', function()
local screen = Screen.new(35, 10) local screen = Screen.new(35, 10)
screen:attach() screen:attach()
-- Basic test if ":highlight" doesn't crash -- Basic test if ":highlight" doesn't crash
execute('highlight') execute('set more', 'highlight')
-- FIXME(tarruda): We need to be sure the prompt is displayed before -- FIXME(tarruda): We need to be sure the prompt is displayed before
-- continuing, or risk a race condition where some of the following input -- continuing, or risk a race condition where some of the following input
-- is discarded resulting in test failure -- is discarded resulting in test failure