diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-01 23:59:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 23:59:24 +0200 |
commit | 097f85ae6c73dc6d8ef460a03990f06bb39d772f (patch) | |
tree | c7ecbab7e66c283cd2638babe757a39ab63228fa /test/functional/helpers.lua | |
parent | ff95e62ff8958e17a292f98465757a9452933bdd (diff) | |
download | rneovim-097f85ae6c73dc6d8ef460a03990f06bb39d772f.tar.gz rneovim-097f85ae6c73dc6d8ef460a03990f06bb39d772f.tar.bz2 rneovim-097f85ae6c73dc6d8ef460a03990f06bb39d772f.zip |
defaults: wildoptions=pum,tagfile #10384
ref #6289
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 95bff21ff5..2571db99e4 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -28,7 +28,7 @@ local nvim_prog = ( -- Default settings for the test session. local nvim_set = 'set shortmess+=IS background=light noswapfile noautoindent' ..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' - ..' belloff= noshowcmd noruler nomore' + ..' belloff= wildoptions-=pum noshowcmd noruler nomore' local nvim_argv = {nvim_prog, '-u', 'NONE', '-i', 'NONE', '--cmd', nvim_set, '--embed'} -- Directory containing nvim. |