aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-09-30 20:32:59 +0200
committerGitHub <noreply@github.com>2019-09-30 20:32:59 +0200
commit7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b (patch)
treecab676dfb3bf83cf243fc5e78bab2f435cde7517 /test/functional/helpers.lua
parentdc52458522f23a0d50c7852af7191f7a92c263cb (diff)
parentdd26bd59745c9fd358624312feb315ec0f106de8 (diff)
downloadrneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.tar.gz
rneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.tar.bz2
rneovim-7e46fcaf2307c8ea409f32459bd9fb4f1ae44b7b.zip
Merge pull request #11121 from bfredl/invalidcell
screen: don't crash on invalid cells being recomposed (tui_raw_line assert)
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index b29161e34c..bd36bac062 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -38,7 +38,7 @@ module.nvim_prog = (
module.nvim_set = (
'set shortmess+=IS background=light noswapfile noautoindent'
..' laststatus=1 undodir=. directory=. viewdir=. backupdir=.'
- ..' belloff= wildoptions-=pum noshowcmd noruler nomore')
+ ..' belloff= wildoptions-=pum noshowcmd noruler nomore redrawdebug=invalid')
module.nvim_argv = {
module.nvim_prog, '-u', 'NONE', '-i', 'NONE',
'--cmd', module.nvim_set, '--embed'}