diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-09-30 22:44:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-30 22:44:38 +0200 |
commit | 60b56ed458c6b35d5045959192b49da5a0ea84f3 (patch) | |
tree | dec4f616e0ade74a929b5144de62f589a3874197 /test/functional | |
parent | 38d02d58b2d0fd5a533b66ec8ab433bc8a1668fe (diff) | |
parent | 8250d6795b06242c9edf4a37938c14e4b46875f0 (diff) | |
download | rneovim-60b56ed458c6b35d5045959192b49da5a0ea84f3.tar.gz rneovim-60b56ed458c6b35d5045959192b49da5a0ea84f3.tar.bz2 rneovim-60b56ed458c6b35d5045959192b49da5a0ea84f3.zip |
Merge pull request #11126 from bfredl/invalidcell-0.4
[release-0.4] screen: don't crash on invalid grid cells being recomposed
Diffstat (limited to 'test/functional')
-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 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'} |