sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9956a1a9ab7141da813e8db63adb7b800958400b
parent 51f68e10ad8bd42925dda24d06a6f6fccf3e6a39
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon,  1 Oct 2018 20:18:54 +0200

Merge pull request #2735 from RedSoxFan/fix-quotes

Do not strip quotes for exec or bind commands
Diffstat:
Msway/commands.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -391,7 +391,11 @@ 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 + && handler->handle != cmd_set + && (*argv[i] == '\"' || *argv[i] == '\'')) { strip_quotes(argv[i]); } argv[i] = do_var_replacement(argv[i]);