diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-30 10:39:29 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-30 10:39:29 -0400 |
commit | 87a70b35919949d79ae724760d4fcb06e4f7bc64 (patch) | |
tree | 8c70c61c8bc4a0b0f9a4ec5be22c875c2d24e28c /sway/commands.c | |
parent | bebe7dea8cd5ee4e10a368551c595397008e2d51 (diff) |
Do not strip quotes for exec or bind commands
Leave quotes intact for cmd_exec, cmd_exec_always, cmd_bindcode,
and cmd_bindsym
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index 03761c52..831d4492 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -391,7 +391,10 @@ struct cmd_results *config_command(char *exec) { // Var replacement, for all but first argument of set // TODO commands for (i = handler->handle == cmd_set ? 2 : 1; i < argc; ++i) { - if (*argv[i] == '\"' || *argv[i] == '\'') { + if (handler->handle != cmd_exec && handler->handle != cmd_exec_always + && handler->handle != cmd_bindsym + && handler->handle != cmd_bindcode + && (*argv[i] == '\"' || *argv[i] == '\'')) { strip_quotes(argv[i]); } argv[i] = do_var_replacement(argv[i]); |