# HG changeset patch # User Christian Brabandt # Date 1528132505 -7200 # Node ID d1eac0853a20823eaa146ad480c50371fdf32737 # Parent 2d7202f19fa5f6cb92ee03e21d7ce6fc8517597c patch 8.1.0033: keys to stop Vim in terminal are wrong commit https://github.com/vim/vim/commit/acb9effecc9f54b93398a44cc0ec40e77978e094 Author: Bram Moolenaar Date: Mon Jun 4 19:11:11 2018 +0200 patch 8.1.0033: keys to stop Vim in terminal are wrong Problem: Keys to stop Vim in terminal are wrong. (Marius Gedminas) Solution: Move ":" to before CTRL-U. diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim --- a/src/testdir/screendump.vim +++ b/src/testdir/screendump.vim @@ -84,7 +84,7 @@ func StopVimInTerminal(buf) " CTRL-O : works both in Normal mode and Insert mode to start a command line. " In Command-line it's inserted, the CTRL-U removes it again. - call term_sendkeys(a:buf, "\\:qa!\") + call term_sendkeys(a:buf, "\:\qa!\") call WaitForAssert({-> assert_equal("finished", term_getstatus(a:buf))}) only! diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 33, +/**/ 32, /**/ 31,