mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 15:38:33 +00:00
vim-patch:7.4.518
Problem: Using status line height in width computations. Solution: Use one instead. (Hirohito Higashi) https://code.google.com/p/vim/source/detail?r=v7-4-518
This commit is contained in:
@@ -220,7 +220,7 @@ static int included_patches[] = {
|
||||
//521,
|
||||
520,
|
||||
//519,
|
||||
//518,
|
||||
518,
|
||||
//517,
|
||||
516,
|
||||
//515,
|
||||
|
@@ -638,7 +638,7 @@ int win_split_ins(int size, int flags, win_T *new_wp, int dir)
|
||||
if (frp->fr_win != oldwin && frp->fr_win != NULL
|
||||
&& (frp->fr_win->w_width > new_size
|
||||
|| frp->fr_win->w_width > oldwin->w_width
|
||||
- new_size - STATUS_HEIGHT)) {
|
||||
- new_size - 1)) {
|
||||
do_equal = TRUE;
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user