mirror of
https://github.com/swaywm/sway.git
synced 2025-11-01 22:58:41 -04:00
introduce next/prev as a direction for focus/move commands.
This commit is contained in:
parent
bc3dc97026
commit
0ff9fe9a7a
6 changed files with 75 additions and 14 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue