aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-19 16:41:02 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-07-19 16:41:02 +1000
commit08736255a3ba16f6b810fd4eee91fe4e1ab92e35 (patch)
tree36c343206946dcea3b89eadaab9384ce16045063 /sway/commands.c
parentImplement focus output command (diff)
downloadsway-08736255a3ba16f6b810fd4eee91fe4e1ab92e35.tar.gz
sway-08736255a3ba16f6b810fd4eee91fe4e1ab92e35.tar.zst
sway-08736255a3ba16f6b810fd4eee91fe4e1ab92e35.zip
Defer the focus commands
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index a3e6a500..73c968ea 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -103,6 +103,7 @@ static struct cmd_handler handlers[] = {
103 { "exec_always", cmd_exec_always }, 103 { "exec_always", cmd_exec_always },
104 { "floating_maximum_size", cmd_floating_maximum_size }, 104 { "floating_maximum_size", cmd_floating_maximum_size },
105 { "floating_minimum_size", cmd_floating_minimum_size }, 105 { "floating_minimum_size", cmd_floating_minimum_size },
106 { "focus", cmd_focus },
106 { "focus_follows_mouse", cmd_focus_follows_mouse }, 107 { "focus_follows_mouse", cmd_focus_follows_mouse },
107 { "focus_wrapping", cmd_focus_wrapping }, 108 { "focus_wrapping", cmd_focus_wrapping },
108 { "font", cmd_font }, 109 { "font", cmd_font },
@@ -137,7 +138,6 @@ static struct cmd_handler command_handlers[] = {
137 { "border", cmd_border }, 138 { "border", cmd_border },
138 { "exit", cmd_exit }, 139 { "exit", cmd_exit },
139 { "floating", cmd_floating }, 140 { "floating", cmd_floating },
140 { "focus", cmd_focus },
141 { "fullscreen", cmd_fullscreen }, 141 { "fullscreen", cmd_fullscreen },
142 { "kill", cmd_kill }, 142 { "kill", cmd_kill },
143 { "layout", cmd_layout }, 143 { "layout", cmd_layout },