diff options
author | Tony Crisci <tony@dubstepdish.com> | 2016-07-27 22:42:45 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2016-07-27 22:48:46 -0400 |
commit | 88b7cbe314aaefc9cc96884a655a2d9aea84ee0a (patch) | |
tree | 293bdbf27966b01a31574f40eb83f4b6ab834ba1 /include | |
parent | 6d2b455727f7e3df1fc7241a39694bd843a92ed1 (diff) | |
download | sway-88b7cbe314aaefc9cc96884a655a2d9aea84ee0a.tar.xz |
Implement `focus child` command
The `focus child` command focuses the child container within the selected
container.
Diffstat (limited to 'include')
-rw-r--r-- | include/focus.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/focus.h b/include/focus.h index 602b6122..236d050b 100644 --- a/include/focus.h +++ b/include/focus.h @@ -5,7 +5,8 @@ enum movement_direction { MOVE_RIGHT, MOVE_UP, MOVE_DOWN, - MOVE_PARENT + MOVE_PARENT, + MOVE_CHILD }; #include "container.h" |