0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.0.1790: 'winfixwidth' is not always respected by :close

Problem:    'winfixwidth' is not always respected by :close.
Solution:   Prefer a frame without 'winfixwidth' or 'winfixheight'. (Jason
            Franklin)
This commit is contained in:
Bram Moolenaar
2018-05-04 20:15:38 +02:00
parent 606cb8b08e
commit c136af29c0
3 changed files with 74 additions and 14 deletions

View File

@@ -122,3 +122,39 @@ func Test_winbuf_close()
call delete('Xtest2') call delete('Xtest2')
call delete('Xtest3') call delete('Xtest3')
endfunc endfunc
" Test that ":close" will respect 'winfixheight' when possible.
func Test_winfixheight_on_close()
set nosplitbelow nosplitright
split | split | vsplit
$wincmd w
setlocal winfixheight
let l:height = winheight(0)
3close
call assert_equal(l:height, winheight(0))
%bwipeout!
setlocal nowinfixheight splitbelow& splitright&
endfunc
" Test that ":close" will respect 'winfixwidth' when possible.
func Test_winfixwidth_on_close()
set nosplitbelow nosplitright
vsplit | vsplit | split
$wincmd w
setlocal winfixwidth
let l:width = winwidth(0)
3close
call assert_equal(l:width, winwidth(0))
%bwipeout!
setlocal nowinfixwidth splitbelow& splitright&
endfunction

View File

@@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
1790,
/**/ /**/
1789, 1789,
/**/ /**/

View File

@@ -2740,12 +2740,14 @@ winframe_remove(
} }
/* /*
* Find out which frame is going to get the freed up space when "win" is * Return a pointer to the frame that will receive the empty screen space that
* closed. * is left over after "win" is closed.
* if 'splitbelow'/'splitleft' the space goes to the window above/left. *
* if 'nosplitbelow'/'nosplitleft' the space goes to the window below/right. * If 'splitbelow' or 'splitright' is set, the space goes above or to the left
* This makes opening a window and closing it immediately keep the same window * by default. Otherwise, the free space goes below or to the right. The
* layout. * result is that opening a window and then immediately closing it will
* preserve the initial window layout. The 'wfh' and 'wfw' settings are
* respected when possible.
*/ */
static frame_T * static frame_T *
win_altframe( win_altframe(
@@ -2753,20 +2755,40 @@ win_altframe(
tabpage_T *tp) /* tab page "win" is in, NULL for current */ tabpage_T *tp) /* tab page "win" is in, NULL for current */
{ {
frame_T *frp; frame_T *frp;
int b; frame_T *other_fr, *target_fr;
if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin) if (tp == NULL ? ONE_WINDOW : tp->tp_firstwin == tp->tp_lastwin)
/* Last window in this tab page, will go to next tab page. */
return alt_tabpage()->tp_curwin->w_frame; return alt_tabpage()->tp_curwin->w_frame;
frp = win->w_frame; frp = win->w_frame;
if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
b = p_spr; if (frp->fr_prev == NULL)
else
b = p_sb;
if ((!b && frp->fr_next != NULL) || frp->fr_prev == NULL)
return frp->fr_next; return frp->fr_next;
return frp->fr_prev; if (frp->fr_next == NULL)
return frp->fr_prev;
target_fr = frp->fr_next;
other_fr = frp->fr_prev;
if (p_spr || p_sb)
{
target_fr = frp->fr_prev;
other_fr = frp->fr_next;
}
/* If 'wfh' or 'wfw' is set for the target and not for the alternate
* window, reverse the selection. */
if (frp->fr_parent != NULL && frp->fr_parent->fr_layout == FR_ROW)
{
if (frame_fixed_width(target_fr) && !frame_fixed_width(other_fr))
target_fr = other_fr;
}
else
{
if (frame_fixed_height(target_fr) && !frame_fixed_height(other_fr))
target_fr = other_fr;
}
return target_fr;
} }
/* /*