changeset 19589:47db1e17d0a4 v8.2.0351

patch 8.2.0351: terminal in popup test is still a bit flaky Commit: https://github.com/vim/vim/commit/3e919d2924c87eb8fee62603788fcc3ced2a0031 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 3 22:56:39 2020 +0100 patch 8.2.0351: terminal in popup test is still a bit flaky Problem: Terminal in popup test is still a bit flaky. Solution: Clear and redraw before opening the popup.
author Bram Moolenaar <Bram@vim.org>
date Tue, 03 Mar 2020 23:00:04 +0100
parents 7368dce16a53
children 37e333947d79
files src/testdir/test_terminal.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -2357,6 +2357,7 @@ func Test_terminal_in_popup()
   call writefile(lines, 'XtermPopup')
   let buf = RunVimInTerminal('-S XtermPopup', #{rows: 15})
   call term_wait(buf, 100)
+  call term_sendkeys(buf, "\<C-L>")
   call term_sendkeys(buf, ":call OpenTerm(0)\<CR>")
   call term_wait(buf, 100)
   call term_sendkeys(buf, ":\<CR>")
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    351,
+/**/
     350,
 /**/
     349,