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

@ -79,16 +79,16 @@ ok(@content == 1, 'one con at workspace level');
is($content[0]->{layout}, 'stacked', 'layout stacked');
#####################################################################
# 3: level up, open two new cons, check that they end up in a stacked
# 3: focus parent, open two new cons, check that they end up in a stacked
# con
#####################################################################
cmd 'level up';
cmd 'focus parent';
my $right_top = open_standard_window($x);
my $right_bot = open_standard_window($x);
@content = @{get_ws_content($tmp)};
is(@content, 2, 'two cons at workspace level after level up');
is(@content, 2, 'two cons at workspace level after focus parent');
is($content[0]->{layout}, 'stacked', 'layout stacked');
is($content[1]->{layout}, 'stacked', 'layout stacked');