]> git.sur5r.net Git - i3/i3/commitdiff
Get rid of references to level up/down.
authorFernando Tarlá Cardoso Lemos <fernandotcl@gmail.com>
Sun, 27 May 2012 04:44:29 +0000 (01:44 -0300)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 28 May 2012 21:37:15 +0000 (23:37 +0200)
In v4 syntax, that's focus parent/child.

testcases/t/130-close-empty-split.t
testcases/t/147-regress-floatingmove.t
testcases/t/152-regress-level-up.t
testcases/t/157-regress-fullscreen-level-up.t

index ce9ebd7a16afa79e6dd79f4c0af26d51c68d41bf..bf93cc69651dc69bd32e13cafc52459ed3f6c0df 100644 (file)
@@ -22,10 +22,10 @@ my ($nodes, $focus) = get_ws_content($tmp);
 is($nodes->[0]->{focused}, 0, 'split container not focused');
 
 # focus the split container
-cmd 'level up';
+cmd 'focus parent';
 ($nodes, $focus) = get_ws_content($tmp);
 my $split = $focus->[0];
-cmd 'level down';
+cmd 'focus child';
 
 $second = open_empty_con($i3);
 
@@ -60,10 +60,10 @@ cmd 'split v';
 is($nodes->[0]->{focused}, 0, 'split container not focused');
 
 # focus the split container
-cmd 'level up';
+cmd 'focus parent';
 ($nodes, $focus) = get_ws_content($tmp);
 $split = $focus->[0];
-cmd 'level down';
+cmd 'focus child';
 
 $second = open_empty_con($i3);
 
index 5a2c87d3f4c1e357fe900bc847121af56fa8c8eb..ff63711c3a6e258a5f833882bd90f611b9ed3bf2 100644 (file)
@@ -18,7 +18,7 @@ my $mid = open_window;
 my $right = open_window;
 
 # go to workspace level
-sync_cmd 'level up';
+sync_cmd 'focus parent';
 
 # make it floating
 sync_cmd 'mode toggle';
index 678cdd9cc0c608624477dbb9f07a91eb64d2d391..01009133c4d3db08357cb151bbc8d7efe0f7a660 100644 (file)
@@ -9,8 +9,8 @@ use i3test;
 fresh_workspace;
 
 cmd 'open';
-cmd 'level up';
-cmd 'level up';
+cmd 'focus parent';
+cmd 'focus parent';
 cmd 'mode toggle';
 
 does_i3_live;
index a861117ccb94372c37a7184fde31ecebf5d3cc91..316dbcaa25d091626fd2f2b470f185214ebb1f1e 100644 (file)
@@ -30,7 +30,7 @@ is($nodes->[0]->{fullscreen_mode}, 1, 'client fullscreen now');
 #####################################################################
 # send level up, try to un-fullscreen
 #####################################################################
-cmd 'level up';
+cmd 'focus parent';
 cmd 'fullscreen';
 
 $nodes = get_ws_content $tmp;