aboutsummaryrefslogtreecommitdiff
path: root/include/sway
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-03-13 15:13:07 -0400
committerGitHub <noreply@github.com>2017-03-13 15:13:07 -0400
commit39ecc10553895ec9c7baf188452e3c80885bae0c (patch)
tree52cc52fb0ec42085c37bee5f4f2e5c5f10cf2631 /include/sway
parent2e1083f52cbec40ed00df27dd1fb5b4d42d9254b (diff)
parentb507462d1c66e11cce76e069a508621dc9599f07 (diff)
Merge pull request #1108 from zandrmartin/new-command-aliases
deprecate new_window and new_float commands
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/commands.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 3ab8d5af..511bee4d 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -12,7 +12,7 @@ enum cmd_status {
CMD_SUCCESS, /**< The command was successful */
CMD_FAILURE, /**< The command resulted in an error */
CMD_INVALID, /**< Unknown command or parser error */
- CMD_DEFER, /**< Command execution deferred */
+ CMD_DEFER, /**< Command execution deferred */
// Config Blocks
CMD_BLOCK_END,
CMD_BLOCK_MODE,
@@ -102,6 +102,8 @@ sway_cmd cmd_client_placeholder;
sway_cmd cmd_client_background;
sway_cmd cmd_commands;
sway_cmd cmd_debuglog;
+sway_cmd cmd_default_border;
+sway_cmd cmd_default_floating_border;
sway_cmd cmd_exec;
sway_cmd cmd_exec_always;
sway_cmd cmd_exit;