BREAKS CONFIG: rename 'level up' to 'focus parent'

…and 'level down' to 'focus child'. More intuitive than the old command names.
This commit is contained in:
Michael Stapelberg
2011-06-10 01:36:33 +02:00
parent adb6d9630c
commit 9bbb37bb55
9 changed files with 35 additions and 36 deletions

View File

@ -23,9 +23,9 @@ cmd 'split v';
my ($nodes, $focus) = get_ws_content($tmp);
is($nodes->[1]->{focused}, 0, 'split container not focused');
cmd 'level up';
cmd 'focus parent';
($nodes, $focus) = get_ws_content($tmp);
is($nodes->[1]->{focused}, 1, 'split container focused after level up');
is($nodes->[1]->{focused}, 1, 'split container focused after focus parent');
my $third = open_empty_con($i3);