Implement focus child command

The `focus child` command focuses the child container within the selected
container.
This commit is contained in:
Tony Crisci 2016-07-27 22:42:45 -04:00
parent 6d2b455727
commit 88b7cbe314
5 changed files with 12 additions and 5 deletions

View file

@ -5,7 +5,8 @@ enum movement_direction {
MOVE_RIGHT,
MOVE_UP,
MOVE_DOWN,
MOVE_PARENT
MOVE_PARENT,
MOVE_CHILD
};
#include "container.h"