diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2016-12-22 18:46:00 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2016-12-22 18:46:00 +0100 |
| commit | 0151ef61400b767a02d8fedacd16d4cccbed6230 (patch) | |
| tree | 08d523251534f637582f168b87223d9e536724db /include | |
| parent | c6d421fa61f9fbd340b643f04fc431378fd0a45b (diff) | |
introduce next/prev as a direction for focus/move commands.
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/focus.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/sway/focus.h b/include/sway/focus.h index b532edc2..30c9e108 100644 --- a/include/sway/focus.h +++ b/include/sway/focus.h @@ -6,7 +6,9 @@ enum movement_direction { MOVE_UP, MOVE_DOWN, MOVE_PARENT, - MOVE_CHILD + MOVE_CHILD, + MOVE_NEXT, + MOVE_PREV }; #include "container.h" @@ -40,4 +42,3 @@ extern bool suspend_workspace_cleanup; bool move_focus(enum movement_direction direction); #endif - |
