aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-06 12:10:24 -0500
committerLibravatar GitHub <noreply@github.com>2017-12-06 12:10:24 -0500
commitab36a5a4d73ddb026c9b1d416c1e7388d63958ea (patch)
tree01f75e94a5e4a2210c01c11b90225492344b624c /sway/commands.c
parentMerge pull request #1504 from acrisci/feature/view-activate (diff)
parentAdd include command (diff)
downloadsway-ab36a5a4d73ddb026c9b1d416c1e7388d63958ea.tar.gz
sway-ab36a5a4d73ddb026c9b1d416c1e7388d63958ea.tar.zst
sway-ab36a5a4d73ddb026c9b1d416c1e7388d63958ea.zip
Merge pull request #1501 from emersion/command-include
Add include command
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 17638129..05a66a7f 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -95,6 +95,7 @@ static struct cmd_handler handlers[] = {
95 { "exec", cmd_exec }, 95 { "exec", cmd_exec },
96 { "exec_always", cmd_exec_always }, 96 { "exec_always", cmd_exec_always },
97 { "exit", cmd_exit }, 97 { "exit", cmd_exit },
98 { "include", cmd_include },
98}; 99};
99 100
100static int handler_compare(const void *_a, const void *_b) { 101static int handler_compare(const void *_a, const void *_b) {