diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-04 19:11:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-04 19:11:11 +0200 |
commit | acb9effecc9f54b93398a44cc0ec40e77978e094 (patch) | |
tree | cce6a4b7cd0230e9ed6d56c36307418bb39d4246 /src | |
parent | 6b810d92a9cd9378ab46ea0db07079cb789f9faa (diff) | |
download | vim-git-acb9effecc9f54b93398a44cc0ec40e77978e094.tar.gz |
patch 8.1.0033: keys to stop Vim in terminal are wrongv8.1.0033
Problem: Keys to stop Vim in terminal are wrong. (Marius Gedminas)
Solution: Move ":" to before CTRL-U.
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/screendump.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/screendump.vim b/src/testdir/screendump.vim index 58966458a..e601ae6cd 100644 --- 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, "\<C-O>\<C-U>:qa!\<cr>") + call term_sendkeys(a:buf, "\<C-O>:\<C-U>qa!\<cr>") call WaitForAssert({-> assert_equal("finished", term_getstatus(a:buf))}) only! diff --git a/src/version.c b/src/version.c index a0aaf866e..52269e7e8 100644 --- 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, |