summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2016-07-27 22:42:45 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2016-07-27 22:48:46 -0400
commit88b7cbe314aaefc9cc96884a655a2d9aea84ee0a (patch)
tree293bdbf27966b01a31574f40eb83f4b6ab834ba1 /include
parentMerge pull request #790 from acrisci/bug/switch-focus-workspace-output (diff)
downloadsway-88b7cbe314aaefc9cc96884a655a2d9aea84ee0a.tar.gz
sway-88b7cbe314aaefc9cc96884a655a2d9aea84ee0a.tar.zst
sway-88b7cbe314aaefc9cc96884a655a2d9aea84ee0a.zip
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.h3
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 {
5 MOVE_RIGHT, 5 MOVE_RIGHT,
6 MOVE_UP, 6 MOVE_UP,
7 MOVE_DOWN, 7 MOVE_DOWN,
8 MOVE_PARENT 8 MOVE_PARENT,
9 MOVE_CHILD
9}; 10};
10 11
11#include "container.h" 12#include "container.h"