diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-30 16:52:24 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-30 16:52:24 +0200 |
commit | 423802d1a282df35078539970eabf559186e1ec8 (patch) | |
tree | 0a252bea57b2e78f9407066ebe3ca0a0a093cbc1 /src/screen.c | |
parent | 68c4bdd53cb54b6c0dccb2dcee446ef42ef3dedd (diff) | |
download | vim-git-423802d1a282df35078539970eabf559186e1ec8.tar.gz |
patch 8.0.0813: cannot use a terminal window while the job is runningv8.0.0813
Problem: Cannot use Vim commands in a terminal window while the job is
running.
Solution: Implement Terminal Normal mode.
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index a1e8b5fa0..baedea755 100644 --- a/src/screen.c +++ b/src/screen.c @@ -3245,7 +3245,7 @@ win_line( #endif #ifdef FEAT_TERMINAL - if (term_is_finished(wp->w_buffer)) + if (term_show_buffer(wp->w_buffer)) { extra_check = TRUE; get_term_attr = TRUE; |