sway

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

commit 6f0bc469e9b99ea641fdf98805f29e8acd96894a
parent 84845adb8e60448de1e91633294e31f2030a5038
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue,  7 Aug 2018 10:27:45 -0400

Merge pull request #2432 from RyanDwyer/fix-move-crash

Fix crash when running `move container to workspace back_and_forth`
Diffstat:
Msway/commands/move.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/sway/commands/move.c b/sway/commands/move.c @@ -105,7 +105,6 @@ static struct cmd_results *cmd_move_container(struct sway_container *current, strcasecmp(argv[2], "prev") == 0 || strcasecmp(argv[2], "next_on_output") == 0 || strcasecmp(argv[2], "prev_on_output") == 0 || - strcasecmp(argv[2], "back_and_forth") == 0 || strcasecmp(argv[2], "current") == 0) { ws = workspace_by_name(argv[2]); } else if (strcasecmp(argv[2], "back_and_forth") == 0) {