aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-05-04 08:24:25 -0400
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-06-01 23:14:58 +1000
commitf3ab895916ca1a0f004b5ceaefa90eee90676532 (patch)
treeaa572c41265fae21617b13b62b1c8d5df1f2d47d /sway/commands.c
parentMerge pull request #2081 from RedSoxFan/fix-2077 (diff)
downloadsway-f3ab895916ca1a0f004b5ceaefa90eee90676532.tar.gz
sway-f3ab895916ca1a0f004b5ceaefa90eee90676532.tar.zst
sway-f3ab895916ca1a0f004b5ceaefa90eee90676532.zip
Implement `floating enable`
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 6f5113f8..4a8d11ba 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -110,7 +110,6 @@ static struct cmd_handler handlers[] = {
110 { "font", cmd_font }, 110 { "font", cmd_font },
111 { "for_window", cmd_for_window }, 111 { "for_window", cmd_for_window },
112 { "force_focus_wrapping", cmd_force_focus_wrapping }, 112 { "force_focus_wrapping", cmd_force_focus_wrapping },
113 { "fullscreen", cmd_fullscreen },
114 { "hide_edge_borders", cmd_hide_edge_borders }, 113 { "hide_edge_borders", cmd_hide_edge_borders },
115 { "include", cmd_include }, 114 { "include", cmd_include },
116 { "input", cmd_input }, 115 { "input", cmd_input },
@@ -176,7 +175,9 @@ static struct cmd_handler config_handlers[] = {
176static struct cmd_handler command_handlers[] = { 175static struct cmd_handler command_handlers[] = {
177 { "border", cmd_border }, 176 { "border", cmd_border },
178 { "exit", cmd_exit }, 177 { "exit", cmd_exit },
178 { "floating", cmd_floating },
179 { "focus", cmd_focus }, 179 { "focus", cmd_focus },
180 { "fullscreen", cmd_fullscreen },
180 { "kill", cmd_kill }, 181 { "kill", cmd_kill },
181 { "layout", cmd_layout }, 182 { "layout", cmd_layout },
182 { "mark", cmd_mark }, 183 { "mark", cmd_mark },