CONFIG BREAK: kick the 'next'/'prev' commands, introduce 'focus left' etc.

Instead of the cryptic next/prev commands, we now provide an argument to the
focus command. Userguide and default config is updated.
This commit is contained in:
Michael Stapelberg
2011-06-08 20:49:49 +02:00
parent 30501e7c8a
commit d68e4710fe
11 changed files with 66 additions and 78 deletions

View File

@ -28,10 +28,10 @@ isnt($first, $second, 'two different containers opened');
cmd 'layout stacking';
is(get_focused($tmp), $second, 'second container still focused');
cmd 'next v';
cmd 'focus down';
is(get_focused($tmp), $first, 'first container focused');
cmd 'prev v';
cmd 'focus up';
is(get_focused($tmp), $second, 'second container focused again');
##############################################################
@ -42,10 +42,10 @@ cmd 'level up';
cmd 'split h';
cmd 'level down';
cmd 'next v';
cmd 'focus down';
is(get_focused($tmp), $first, 'first container focused');
cmd 'prev v';
cmd 'focus up';
is(get_focused($tmp), $second, 'second container focused again');