sway

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

commit d9eb49f3b1b07a06300c40cb4dae0535279d0302
parent d202ca2fd7c1be75ea9a4f122a3cc18fabde16e8
Author: David Eklov <david.eklov@gmail.com>
Date:   Sun, 17 Jul 2016 22:52:39 -0500

Add missing entry to list of accepted arguments for the move command

Diffstat:
Msway/commands.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -1011,7 +1011,8 @@ static struct cmd_results *cmd_move(int argc, char **argv) { } const char* expected_syntax = "Expected 'move <left|right|up|down>' or " "'move <container|window> to workspace <name>' or " - "'move <container|window|workspace> to output <name|direction>'"; + "'move <container|window|workspace> to output <name|direction>' or " + "'move position mouse'"; swayc_t *view = get_focused_container(&root_container); if (strcasecmp(argv[0], "left") == 0) {