diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-03 11:03:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 11:03:49 +0200 |
commit | 6891d8aeca9abc24314ad92cb0c669afa13a8769 (patch) | |
tree | 27565ee941cd97515399964f5e22018817a9d022 /src/nvim/window.c | |
parent | 9d58a58980c666a3abf515a1dd6b813b13d2d5ae (diff) | |
parent | 96a8b0ab787c7d7148eb4c9881fdb5e022996081 (diff) | |
download | rneovim-6891d8aeca9abc24314ad92cb0c669afa13a8769.tar.gz rneovim-6891d8aeca9abc24314ad92cb0c669afa13a8769.tar.bz2 rneovim-6891d8aeca9abc24314ad92cb0c669afa13a8769.zip |
Merge #9970 from janlazo/vim-8.1.0794
vim-patch:8.0.1708,8.1.{369,794,1242}
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index d9898533da..c6270d6c76 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -3793,6 +3793,9 @@ static void enter_tabpage(tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_au * the frames for that. When the Vim window was resized need to update * frame sizes too. Use the stored value of p_ch, so that it can be * different for each tab page. */ + if (p_ch != curtab->tp_ch_used) { + clear_cmdline = true; + } p_ch = curtab->tp_ch_used; if (curtab->tp_old_Rows != Rows || (old_off != firstwin->w_winrow )) |