Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
patch 8.1.0030: stoping Vim running in a terminal may not work
Problem:    Stoping Vim running in a terminal may not work.
Solution:   Instead of sending <Esc> send CTRL-O.
  • Loading branch information
brammool committed Jun 3, 2018
1 parent 1580f75 commit 3339d3d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/testdir/screendump.vim
Expand Up @@ -81,7 +81,11 @@ endfunc
" Stop a Vim running in terminal buffer "buf".
func StopVimInTerminal(buf)
call assert_equal("running", term_getstatus(a:buf))
call term_sendkeys(a:buf, "\<Esc>:qa!\<cr>")

" 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 WaitForAssert({-> assert_equal("finished", term_getstatus(a:buf))})
only!
endfunc
Expand Down
3 changes: 3 additions & 0 deletions src/testdir/test_prompt_buffer.vim
Expand Up @@ -34,9 +34,12 @@ func Test_prompt_basic()
\ 'func TimerFunc(text)',
\ ' " Add the output above the current prompt.',
\ ' call append(line("$") - 1, "Result: \"" . a:text . "\"")',
\ ' " Reset &modified to allow the buffer to be closed.',
\ ' set nomodified',
\ 'endfunc',
\ '',
\ 'call setline(1, "other buffer")',
\ 'set nomodified',
\ 'new',
\ 'set buftype=prompt',
\ 'call prompt_setcallback(bufnr(""), function("TextEntered"))',
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
30,
/**/
29,
/**/
Expand Down

0 comments on commit 3339d3d

Please sign in to comment.