diff options
author | nicm <nicm> | 2015-06-04 11:43:51 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-06-04 11:43:51 +0000 |
commit | a863834574ec02b87ff0e7245ef31f0d4543ab34 (patch) | |
tree | 4fe2aa4fe98c34bb0d56e5032460889b70dfc317 /cmd-join-pane.c | |
parent | a3edfd9e84f4f8e9b74425cdc4b00fe9cb3d0ba6 (diff) | |
download | rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.tar.gz rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.tar.bz2 rtmux-a863834574ec02b87ff0e7245ef31f0d4543ab34.zip |
Add support for a single "marked pane". There is one marked pane in the
server at a time; it may be toggled or cleared with select-pane -m and
-M (the border is highlighted). A new target '~' or '{marked}' specifies
the marked pane to commands and it is the default target for the
swap-pane and join-pane -s flag (this makes them much simpler to use -
mark the source pane and then change to the target pane to run swapp or
joinp).
Diffstat (limited to 'cmd-join-pane.c')
-rw-r--r-- | cmd-join-pane.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-join-pane.c b/cmd-join-pane.c index 943cdce4..b995b674 100644 --- a/cmd-join-pane.c +++ b/cmd-join-pane.c @@ -75,7 +75,7 @@ join_pane(struct cmd *self, struct cmd_q *cmdq, int not_same_window) dst_idx = dst_wl->idx; server_unzoom_window(dst_w); - src_wl = cmd_find_pane(cmdq, args_get(args, 's'), NULL, &src_wp); + src_wl = cmd_find_pane_marked(cmdq, args_get(args, 's'), NULL, &src_wp); if (src_wl == NULL) return (CMD_RETURN_ERROR); src_w = src_wl->window; |