commit 315bca176c97716f8a4dabbec453efaad9ce1b15
parent dbf8e1cead12ba775a9a702140576c5f7406c380
Author: Brian Ashworth <bosrsf04@gmail.com>
Date: Wed, 28 Nov 2018 01:28:03 -0500
Do not strip quotes for cmd_mode
Like with cmd_bindsym and cmd_bindcode, the quotes should not be
stripped for cmd_mode. cmd_mode performs its own stripping for the mode
name and the only valid subcommands are cmd_bindsym and cmd_bindcode.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/sway/commands.c b/sway/commands.c
@@ -420,6 +420,7 @@ struct cmd_results *config_command(char *exec) {
// Strip quotes and unescape the string
for (int i = handler->handle == cmd_set ? 2 : 1; i < argc; ++i) {
if (handler->handle != cmd_exec && handler->handle != cmd_exec_always
+ && handler->handle != cmd_mode
&& handler->handle != cmd_bindsym
&& handler->handle != cmd_bindcode
&& handler->handle != cmd_set