summaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorRyan Dwyer <[email protected]>2018-05-14 22:47:10 +1000
committerRyan Dwyer <[email protected]>2018-05-15 11:18:27 +1000
commit22d38600d0edbb35029b3076c14e0e119dbf3dd2 (patch)
treead548731ca215e2ec0f56cde86a6ff16df8cb323 /sway/commands.c
parentf1f54bbc882775d431d14f99355d339ef9dab5a8 (diff)
Implement marks
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 60c64776..31d241a8 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -175,6 +175,7 @@ static struct cmd_handler command_handlers[] = {
{ "focus", cmd_focus },
{ "kill", cmd_kill },
{ "layout", cmd_layout },
+ { "mark", cmd_mark },
{ "move", cmd_move },
{ "opacity", cmd_opacity },
{ "reload", cmd_reload },
@@ -185,6 +186,7 @@ static struct cmd_handler command_handlers[] = {
{ "splitt", cmd_splitt },
{ "splitv", cmd_splitv },
{ "title_format", cmd_title_format },
+ { "unmark", cmd_unmark },
};
static int handler_compare(const void *_a, const void *_b) {