Change swap-window -d to be the other way round (stay with src window),

so it works like swap-pane.
pull/1735/head
nicm 2019-05-09 08:39:09 +00:00
parent 299b7289ea
commit 3c68e51609
1 changed files with 2 additions and 2 deletions

View File

@ -78,9 +78,9 @@ cmd_swap_window_exec(struct cmd *self, struct cmdq_item *item)
TAILQ_INSERT_TAIL(&w_dst->winlinks, wl_src, wentry);
if (!args_has(self->args, 'd')) {
session_select(dst, wl_dst->idx);
session_select(src, wl_src->idx);
if (src != dst)
session_select(src, wl_src->idx);
session_select(dst, wl_dst->idx);
}
session_group_synchronize_from(src);
server_redraw_session_group(src);