aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Zandr Martin <zandrmartin@gmail.com>2017-03-09 14:56:15 -0500
committerLibravatar Zandr Martin <zandrmartin@gmail.com>2017-03-09 14:56:15 -0500
commit18450dd16a3909d0ea581f5f9cad4128751870cc (patch)
tree6d4a99dcb568e73f514e0fde42fe3ae7d64a30ca /include
parentMerge pull request #1105 from zandrmartin/fix-workspace-output-assignment (diff)
downloadsway-18450dd16a3909d0ea581f5f9cad4128751870cc.tar.gz
sway-18450dd16a3909d0ea581f5f9cad4128751870cc.tar.zst
sway-18450dd16a3909d0ea581f5f9cad4128751870cc.zip
deprecate new_window and new_float commands
Diffstat (limited to 'include')
-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 {
12 CMD_SUCCESS, /**< The command was successful */ 12 CMD_SUCCESS, /**< The command was successful */
13 CMD_FAILURE, /**< The command resulted in an error */ 13 CMD_FAILURE, /**< The command resulted in an error */
14 CMD_INVALID, /**< Unknown command or parser error */ 14 CMD_INVALID, /**< Unknown command or parser error */
15 CMD_DEFER, /**< Command execution deferred */ 15 CMD_DEFER, /**< Command execution deferred */
16 // Config Blocks 16 // Config Blocks
17 CMD_BLOCK_END, 17 CMD_BLOCK_END,
18 CMD_BLOCK_MODE, 18 CMD_BLOCK_MODE,
@@ -102,6 +102,8 @@ sway_cmd cmd_client_placeholder;
102sway_cmd cmd_client_background; 102sway_cmd cmd_client_background;
103sway_cmd cmd_commands; 103sway_cmd cmd_commands;
104sway_cmd cmd_debuglog; 104sway_cmd cmd_debuglog;
105sway_cmd cmd_default_border;
106sway_cmd cmd_default_floating_border;
105sway_cmd cmd_exec; 107sway_cmd cmd_exec;
106sway_cmd cmd_exec_always; 108sway_cmd cmd_exec_always;
107sway_cmd cmd_exit; 109sway_cmd cmd_exit;