mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00
vim-patch:8.2.{3773,3774}
vim-patch:8.2.3773: wrong window size when a modeline changes 'columns' Problem: Wrong window size when a modeline changes 'columns' and there is more than one tabpage. (Michael Soyka) Solution: Adjust the frames of all tabpages. (closes vim/vim#9315)8a7374f8c4
vim-patch:8.2.3774: test for command line height fails Problem: Test for command line height fails. Solution: Use another way to handle window size change.b711814cb6
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -903,7 +903,8 @@ struct tabpage_S {
|
||||
win_T *tp_firstwin; ///< first window in this Tab page
|
||||
win_T *tp_lastwin; ///< last window in this Tab page
|
||||
long tp_old_Rows_avail; ///< ROWS_AVAIL when Tab page was left
|
||||
long tp_old_Columns; ///< Columns when Tab page was left
|
||||
long tp_old_Columns; ///< Columns when Tab page was left, -1 when
|
||||
///< calling win_new_screen_cols() postponed
|
||||
long tp_ch_used; ///< value of 'cmdheight' when frame size was set
|
||||
|
||||
diff_T *tp_first_diff;
|
||||
|
Reference in New Issue
Block a user