Merge pull request #2036 from Airblader/bug-2015
Make resize grow|shrink width|height work for a nested split in the s…
This commit is contained in:
@ -141,6 +141,21 @@ cmp_float($nodes->[1]->{percent}, 0.166666666666667, 'second window got 16%');
|
||||
cmp_float($nodes->[2]->{percent}, 0.166666666666667, 'third window got 16%');
|
||||
cmp_float($nodes->[3]->{percent}, 0.50, 'fourth window got 50%');
|
||||
|
||||
################################################################################
|
||||
# Check that the resize grow/shrink width/height syntax works if a nested split
|
||||
# was set on the container, but no sibling has been opened yet. See #2015.
|
||||
################################################################################
|
||||
|
||||
$tmp = fresh_workspace;
|
||||
$left = open_window;
|
||||
$right = open_window;
|
||||
|
||||
cmd 'split h';
|
||||
cmd 'resize grow width 10px or 25 ppt';
|
||||
|
||||
($nodes, $focus) = get_ws_content($tmp);
|
||||
cmp_float($nodes->[0]->{percent}, 0.25, 'left window got 25%');
|
||||
cmp_float($nodes->[1]->{percent}, 0.75, 'right window got 75%');
|
||||
|
||||
############################################################
|
||||
# checks that resizing floating windows works
|
||||
|
Reference in New Issue
Block a user