mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-23 00:23:08 +01:00
Allow attach-session -t to accept a window and pane to select them on
attach. Based on a diff from J Raynor.
This commit is contained in:
parent
adc1f21eae
commit
1a0d3cd5d3
@ -47,6 +47,9 @@ cmd_attach_session(struct cmd_q *cmdq, const char *tflag, int dflag, int rflag,
|
|||||||
{
|
{
|
||||||
struct session *s;
|
struct session *s;
|
||||||
struct client *c;
|
struct client *c;
|
||||||
|
struct winlink *wl = NULL;
|
||||||
|
struct window *w = NULL;
|
||||||
|
struct window_pane *wp = NULL;
|
||||||
const char *update;
|
const char *update;
|
||||||
char *cause;
|
char *cause;
|
||||||
u_int i;
|
u_int i;
|
||||||
@ -59,12 +62,31 @@ cmd_attach_session(struct cmd_q *cmdq, const char *tflag, int dflag, int rflag,
|
|||||||
return (CMD_RETURN_ERROR);
|
return (CMD_RETURN_ERROR);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
if (tflag == NULL) {
|
||||||
return (CMD_RETURN_ERROR);
|
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
||||||
|
return (CMD_RETURN_ERROR);
|
||||||
|
} else if (tflag[strcspn(tflag, ":.")] != '\0') {
|
||||||
|
if ((wl = cmd_find_pane(cmdq, tflag, &s, &wp)) == NULL)
|
||||||
|
return (CMD_RETURN_ERROR);
|
||||||
|
} else {
|
||||||
|
if ((s = cmd_find_session(cmdq, tflag, 1)) == NULL)
|
||||||
|
return (CMD_RETURN_ERROR);
|
||||||
|
w = cmd_lookup_windowid(tflag);
|
||||||
|
if (w == NULL && (wp = cmd_lookup_paneid(tflag)) != NULL)
|
||||||
|
w = wp->window;
|
||||||
|
if (w != NULL)
|
||||||
|
wl = winlink_find_by_window(&s->windows, w);
|
||||||
|
}
|
||||||
|
|
||||||
if (cmdq->client == NULL)
|
if (cmdq->client == NULL)
|
||||||
return (CMD_RETURN_NORMAL);
|
return (CMD_RETURN_NORMAL);
|
||||||
|
|
||||||
|
if (wl != NULL) {
|
||||||
|
if (wp != NULL)
|
||||||
|
window_set_active_pane(wp->window, wp);
|
||||||
|
session_set_current(s, wl);
|
||||||
|
}
|
||||||
|
|
||||||
if (cmdq->client->session != NULL) {
|
if (cmdq->client->session != NULL) {
|
||||||
if (dflag) {
|
if (dflag) {
|
||||||
/*
|
/*
|
||||||
|
2
cmd.c
2
cmd.c
@ -126,9 +126,7 @@ struct session *cmd_lookup_session(const char *, int *);
|
|||||||
struct session *cmd_lookup_session_id(const char *);
|
struct session *cmd_lookup_session_id(const char *);
|
||||||
struct winlink *cmd_lookup_window(struct session *, const char *, int *);
|
struct winlink *cmd_lookup_window(struct session *, const char *, int *);
|
||||||
int cmd_lookup_index(struct session *, const char *, int *);
|
int cmd_lookup_index(struct session *, const char *, int *);
|
||||||
struct window_pane *cmd_lookup_paneid(const char *);
|
|
||||||
struct winlink *cmd_lookup_winlink_windowid(struct session *, const char *);
|
struct winlink *cmd_lookup_winlink_windowid(struct session *, const char *);
|
||||||
struct window *cmd_lookup_windowid(const char *);
|
|
||||||
struct session *cmd_window_session(struct cmd_q *, struct window *,
|
struct session *cmd_window_session(struct cmd_q *, struct window *,
|
||||||
struct winlink **);
|
struct winlink **);
|
||||||
struct winlink *cmd_find_window_offset(const char *, struct session *, int *);
|
struct winlink *cmd_find_window_offset(const char *, struct session *, int *);
|
||||||
|
2
tmux.h
2
tmux.h
@ -1739,6 +1739,8 @@ int cmd_find_index(struct cmd_q *, const char *,
|
|||||||
struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **,
|
struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **,
|
||||||
struct window_pane **);
|
struct window_pane **);
|
||||||
char *cmd_template_replace(const char *, const char *, int);
|
char *cmd_template_replace(const char *, const char *, int);
|
||||||
|
struct window *cmd_lookup_windowid(const char *);
|
||||||
|
struct window_pane *cmd_lookup_paneid(const char *);
|
||||||
extern const struct cmd_entry *cmd_table[];
|
extern const struct cmd_entry *cmd_table[];
|
||||||
extern const struct cmd_entry cmd_attach_session_entry;
|
extern const struct cmd_entry cmd_attach_session_entry;
|
||||||
extern const struct cmd_entry cmd_bind_key_entry;
|
extern const struct cmd_entry cmd_bind_key_entry;
|
||||||
|
Loading…
Reference in New Issue
Block a user