4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
30 const struct cmd_entry
*cmd_table
[] = {
31 &cmd_attach_session_entry
,
33 &cmd_break_pane_entry
,
34 &cmd_capture_pane_entry
,
35 &cmd_choose_buffer_entry
,
36 &cmd_choose_client_entry
,
37 &cmd_choose_session_entry
,
38 &cmd_choose_window_entry
,
39 &cmd_clear_history_entry
,
40 &cmd_clock_mode_entry
,
41 &cmd_command_prompt_entry
,
42 &cmd_confirm_before_entry
,
43 &cmd_copy_buffer_entry
,
45 &cmd_delete_buffer_entry
,
46 &cmd_detach_client_entry
,
47 &cmd_display_message_entry
,
48 &cmd_display_panes_entry
,
49 &cmd_find_window_entry
,
50 &cmd_has_session_entry
,
54 &cmd_kill_server_entry
,
55 &cmd_kill_session_entry
,
56 &cmd_kill_window_entry
,
57 &cmd_last_window_entry
,
58 &cmd_link_window_entry
,
59 &cmd_list_buffers_entry
,
60 &cmd_list_clients_entry
,
61 &cmd_list_commands_entry
,
63 &cmd_list_panes_entry
,
64 &cmd_list_sessions_entry
,
65 &cmd_list_windows_entry
,
66 &cmd_load_buffer_entry
,
67 &cmd_lock_client_entry
,
68 &cmd_lock_server_entry
,
69 &cmd_lock_session_entry
,
70 &cmd_move_window_entry
,
71 &cmd_new_session_entry
,
72 &cmd_new_window_entry
,
73 &cmd_next_layout_entry
,
74 &cmd_next_window_entry
,
75 &cmd_paste_buffer_entry
,
77 &cmd_previous_layout_entry
,
78 &cmd_previous_window_entry
,
79 &cmd_refresh_client_entry
,
80 &cmd_rename_session_entry
,
81 &cmd_rename_window_entry
,
82 &cmd_resize_pane_entry
,
83 &cmd_respawn_window_entry
,
84 &cmd_rotate_window_entry
,
86 &cmd_save_buffer_entry
,
87 &cmd_select_layout_entry
,
88 &cmd_select_pane_entry
,
89 &cmd_select_window_entry
,
91 &cmd_send_prefix_entry
,
92 &cmd_server_info_entry
,
93 &cmd_set_buffer_entry
,
94 &cmd_set_environment_entry
,
95 &cmd_set_option_entry
,
96 &cmd_set_window_option_entry
,
97 &cmd_show_buffer_entry
,
98 &cmd_show_environment_entry
,
99 &cmd_show_messages_entry
,
100 &cmd_show_options_entry
,
101 &cmd_show_window_options_entry
,
102 &cmd_source_file_entry
,
103 &cmd_split_window_entry
,
104 &cmd_start_server_entry
,
105 &cmd_suspend_client_entry
,
106 &cmd_swap_pane_entry
,
107 &cmd_swap_window_entry
,
108 &cmd_switch_client_entry
,
109 &cmd_unbind_key_entry
,
110 &cmd_unlink_window_entry
,
114 struct session
*cmd_choose_session(struct sessions
*);
115 struct client
*cmd_choose_client(struct clients
*);
116 struct client
*cmd_lookup_client(const char *);
117 struct session
*cmd_lookup_session(const char *, int *);
118 struct winlink
*cmd_lookup_window(struct session
*, const char *, int *);
119 int cmd_lookup_index(struct session
*, const char *, int *);
120 struct winlink
*cmd_find_window_offset(const char *, struct session
*, int *);
121 int cmd_find_index_offset(const char *, struct session
*, int *);
122 struct window_pane
*cmd_find_pane_offset(const char *, struct winlink
*);
125 cmd_pack_argv(int argc
, char **argv
, char *buf
, size_t len
)
131 for (i
= 0; i
< argc
; i
++) {
132 if (strlcpy(buf
, argv
[i
], len
) >= len
)
134 arglen
= strlen(argv
[i
]) + 1;
143 cmd_unpack_argv(char *buf
, size_t len
, int argc
, char ***argv
)
150 *argv
= xcalloc(argc
, sizeof **argv
);
153 for (i
= 0; i
< argc
; i
++) {
155 cmd_free_argv(argc
, *argv
);
159 arglen
= strlen(buf
) + 1;
160 (*argv
)[i
] = xstrdup(buf
);
169 cmd_free_argv(int argc
, char **argv
)
175 for (i
= 0; i
< argc
; i
++) {
183 cmd_parse(int argc
, char **argv
, char **cause
)
185 const struct cmd_entry
**entryp
, *entry
;
188 int opt
, ambiguous
= 0;
192 xasprintf(cause
, "no command");
197 for (entryp
= cmd_table
; *entryp
!= NULL
; entryp
++) {
198 if ((*entryp
)->alias
!= NULL
&&
199 strcmp((*entryp
)->alias
, argv
[0]) == 0) {
205 if (strncmp((*entryp
)->name
, argv
[0], strlen(argv
[0])) != 0)
211 /* Bail now if an exact match. */
212 if (strcmp(entry
->name
, argv
[0]) == 0)
218 xasprintf(cause
, "unknown command: %s", argv
[0]);
224 if (entry
->parse
== NULL
) {
225 while ((opt
= getopt(argc
, argv
, "")) != -1) {
237 cmd
= xmalloc(sizeof *cmd
);
240 if (entry
->parse
!= NULL
) {
241 if (entry
->parse(cmd
, argc
, argv
, cause
) != 0) {
250 for (entryp
= cmd_table
; *entryp
!= NULL
; entryp
++) {
251 if (strncmp((*entryp
)->name
, argv
[0], strlen(argv
[0])) != 0)
253 if (strlcat(s
, (*entryp
)->name
, sizeof s
) >= sizeof s
)
255 if (strlcat(s
, ", ", sizeof s
) >= sizeof s
)
258 s
[strlen(s
) - 2] = '\0';
259 xasprintf(cause
, "ambiguous command: %s, could be: %s", argv
[0], s
);
263 xasprintf(cause
, "usage: %s %s", entry
->name
, entry
->usage
);
268 cmd_exec(struct cmd
*cmd
, struct cmd_ctx
*ctx
)
270 return (cmd
->entry
->exec(cmd
, ctx
));
274 cmd_free(struct cmd
*cmd
)
276 if (cmd
->data
!= NULL
&& cmd
->entry
->free
!= NULL
)
277 cmd
->entry
->free(cmd
);
282 cmd_print(struct cmd
*cmd
, char *buf
, size_t len
)
284 if (cmd
->entry
->print
== NULL
)
285 return (xsnprintf(buf
, len
, "%s", cmd
->entry
->name
));
286 return (cmd
->entry
->print(cmd
, buf
, len
));
290 * Figure out the current session. Use: 1) the current session, if the command
291 * context has one; 2) the most recently used session containing the pty of the
292 * calling client, if any; 3) the session specified in the TMUX variable from
293 * the environment (as passed from the client); 4) the most recently used
294 * session from all sessions.
297 cmd_current_session(struct cmd_ctx
*ctx
)
299 struct msg_command_data
*data
= ctx
->msgdata
;
300 struct client
*c
= ctx
->cmdclient
;
304 struct window_pane
*wp
;
308 if (ctx
->curclient
!= NULL
&& ctx
->curclient
->session
!= NULL
)
309 return (ctx
->curclient
->session
);
312 * If the name of the calling client's pty is know, build a list of the
313 * sessions that contain it and if any choose either the first or the
316 if (c
!= NULL
&& c
->tty
.path
!= NULL
) {
318 for (i
= 0; i
< ARRAY_LENGTH(&sessions
); i
++) {
319 if ((s
= ARRAY_ITEM(&sessions
, i
)) == NULL
)
322 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
323 TAILQ_FOREACH(wp
, &wl
->window
->panes
, entry
) {
324 if (strcmp(wp
->tty
, c
->tty
.path
) == 0) {
336 s
= cmd_choose_session(&ss
);
342 /* Use the session from the TMUX environment variable. */
343 if (data
!= NULL
&& data
->pid
!= -1) {
344 if (data
->pid
!= getpid())
346 if (data
->idx
> ARRAY_LENGTH(&sessions
))
348 if ((s
= ARRAY_ITEM(&sessions
, data
->idx
)) == NULL
)
353 return (cmd_choose_session(&sessions
));
356 /* Find the most recently used session from a list. */
358 cmd_choose_session(struct sessions
*ss
)
360 struct session
*s
, *sbest
;
361 struct timeval
*tv
= NULL
;
365 for (i
= 0; i
< ARRAY_LENGTH(ss
); i
++) {
366 if ((s
= ARRAY_ITEM(ss
, i
)) == NULL
)
369 if (tv
== NULL
|| timercmp(&s
->activity_time
, tv
, >)) {
371 tv
= &s
->activity_time
;
379 * Find the current client. First try the current client if set, then pick the
380 * most recently used of the clients attached to the current session if any,
381 * then of all clients.
384 cmd_current_client(struct cmd_ctx
*ctx
)
391 if (ctx
->curclient
!= NULL
)
392 return (ctx
->curclient
);
395 * No current client set. Find the current session and return the
396 * newest of its clients.
398 s
= cmd_current_session(ctx
);
399 if (s
!= NULL
&& !(s
->flags
& SESSION_UNATTACHED
)) {
401 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
402 if ((c
= ARRAY_ITEM(&clients
, i
)) == NULL
)
408 c
= cmd_choose_client(&cc
);
414 return (cmd_choose_client(&clients
));
417 /* Choose the most recently used client from a list. */
419 cmd_choose_client(struct clients
*cc
)
421 struct client
*c
, *cbest
;
422 struct timeval
*tv
= NULL
;
426 for (i
= 0; i
< ARRAY_LENGTH(cc
); i
++) {
427 if ((c
= ARRAY_ITEM(cc
, i
)) == NULL
)
429 if (c
->session
== NULL
)
432 if (tv
== NULL
|| timercmp(&c
->activity_time
, tv
, >)) {
434 tv
= &c
->activity_time
;
441 /* Find the target client or report an error and return NULL. */
443 cmd_find_client(struct cmd_ctx
*ctx
, const char *arg
)
449 /* A NULL argument means the current client. */
451 return (cmd_current_client(ctx
));
452 tmparg
= xstrdup(arg
);
454 /* Trim a single trailing colon if any. */
455 arglen
= strlen(tmparg
);
456 if (arglen
!= 0 && tmparg
[arglen
- 1] == ':')
457 tmparg
[arglen
- 1] = '\0';
459 /* Find the client, if any. */
460 c
= cmd_lookup_client(tmparg
);
462 /* If no client found, report an error. */
464 ctx
->error(ctx
, "client not found: %s", tmparg
);
471 * Lookup a client by device path. Either of a full match and a match without a
472 * leading _PATH_DEV ("/dev/") is accepted.
475 cmd_lookup_client(const char *name
)
481 for (i
= 0; i
< ARRAY_LENGTH(&clients
); i
++) {
482 c
= ARRAY_ITEM(&clients
, i
);
483 if (c
== NULL
|| c
->session
== NULL
)
487 /* Check for exact matches. */
488 if (strcmp(name
, path
) == 0)
491 /* Check without leading /dev if present. */
492 if (strncmp(path
, _PATH_DEV
, (sizeof _PATH_DEV
) - 1) != 0)
494 if (strcmp(name
, path
+ (sizeof _PATH_DEV
) - 1) == 0)
501 /* Lookup a session by name. If no session is found, NULL is returned. */
503 cmd_lookup_session(const char *name
, int *ambiguous
)
505 struct session
*s
, *sfound
;
511 * Look for matches. First look for exact matches - session names must
512 * be unique so an exact match can't be ambigious and can just be
515 for (i
= 0; i
< ARRAY_LENGTH(&sessions
); i
++) {
516 if ((s
= ARRAY_ITEM(&sessions
, i
)) == NULL
)
518 if (strcmp(name
, s
->name
) == 0)
523 * Otherwise look for partial matches, returning early if it is found to
527 for (i
= 0; i
< ARRAY_LENGTH(&sessions
); i
++) {
528 if ((s
= ARRAY_ITEM(&sessions
, i
)) == NULL
)
530 if (strncmp(name
, s
->name
, strlen(name
)) == 0 ||
531 fnmatch(name
, s
->name
, 0) == 0) {
532 if (sfound
!= NULL
) {
543 * Lookup a window or return -1 if not found or ambigious. First try as an
544 * index and if invalid, use fnmatch or leading prefix. Return NULL but fill in
545 * idx if the window index is a valid number but there is no window with that
549 cmd_lookup_window(struct session
*s
, const char *name
, int *ambiguous
)
551 struct winlink
*wl
, *wlfound
;
557 /* First see if this is a valid window index in this session. */
558 idx
= strtonum(name
, 0, INT_MAX
, &errstr
);
559 if (errstr
== NULL
) {
560 if ((wl
= winlink_find_by_index(&s
->windows
, idx
)) != NULL
)
564 /* Look for exact matches, error if more than one. */
566 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
567 if (strcmp(name
, wl
->window
->name
) == 0) {
568 if (wlfound
!= NULL
) {
578 /* Now look for pattern matches, again error if multiple. */
580 RB_FOREACH(wl
, winlinks
, &s
->windows
) {
581 if (strncmp(name
, wl
->window
->name
, strlen(name
)) == 0 ||
582 fnmatch(name
, wl
->window
->name
, 0) == 0) {
583 if (wlfound
!= NULL
) {
597 * Find a window index - if the window doesn't exist, check if it is a
598 * potential index and return it anyway.
601 cmd_lookup_index(struct session
*s
, const char *name
, int *ambiguous
)
607 if ((wl
= cmd_lookup_window(s
, name
, ambiguous
)) != NULL
)
612 idx
= strtonum(name
, 0, INT_MAX
, &errstr
);
619 /* Find the target session or report an error and return NULL. */
621 cmd_find_session(struct cmd_ctx
*ctx
, const char *arg
)
629 /* A NULL argument means the current session. */
631 return (cmd_current_session(ctx
));
632 tmparg
= xstrdup(arg
);
634 /* Trim a single trailing colon if any. */
635 arglen
= strlen(tmparg
);
636 if (arglen
!= 0 && tmparg
[arglen
- 1] == ':')
637 tmparg
[arglen
- 1] = '\0';
639 /* Find the session, if any. */
640 s
= cmd_lookup_session(tmparg
, &ambiguous
);
642 /* If it doesn't, try to match it as a client. */
643 if (s
== NULL
&& (c
= cmd_lookup_client(tmparg
)) != NULL
)
646 /* If no session found, report an error. */
649 ctx
->error(ctx
, "more than one session: %s", tmparg
);
651 ctx
->error(ctx
, "session not found: %s", tmparg
);
658 /* Find the target session and window or report an error and return NULL. */
660 cmd_find_window(struct cmd_ctx
*ctx
, const char *arg
, struct session
**sp
)
665 char *sessptr
= NULL
;
669 * Find the current session. There must always be a current session, if
670 * it can't be found, report an error.
672 if ((s
= cmd_current_session(ctx
)) == NULL
) {
673 ctx
->error(ctx
, "can't establish current session");
677 /* A NULL argument means the current session and window. */
684 /* Time to look at the argument. If it is empty, that is an error. */
688 /* Find the separating colon and split into window and session. */
689 winptr
= strchr(arg
, ':');
692 winptr
++; /* skip : */
693 sessptr
= xstrdup(arg
);
694 *strchr(sessptr
, ':') = '\0';
696 /* Try to lookup the session if present. */
697 if (*sessptr
!= '\0') {
698 if ((s
= cmd_lookup_session(sessptr
, &ambiguous
)) == NULL
)
705 * Then work out the window. An empty string is the current window,
706 * otherwise try special cases then to look it up in the session.
710 else if (winptr
[0] == '!' && winptr
[1] == '\0')
711 wl
= TAILQ_FIRST(&s
->lastw
);
712 else if (winptr
[0] == '+' || winptr
[0] == '-')
713 wl
= cmd_find_window_offset(winptr
, s
, &ambiguous
);
715 wl
= cmd_lookup_window(s
, winptr
, &ambiguous
);
725 * No colon in the string, first try special cases, then as a window
726 * and lastly as a session.
728 if (arg
[0] == '!' && arg
[1] == '\0') {
729 if ((wl
= TAILQ_FIRST(&s
->lastw
)) == NULL
)
731 } else if (arg
[0] == '+' || arg
[0] == '-') {
732 if ((wl
= cmd_find_window_offset(arg
, s
, &ambiguous
)) == NULL
)
734 } else if ((wl
= cmd_lookup_window(s
, arg
, &ambiguous
)) == NULL
)
745 if ((s
= cmd_lookup_session(arg
, &ambiguous
)) == NULL
)
755 ctx
->error(ctx
, "multiple sessions: %s", arg
);
757 ctx
->error(ctx
, "session not found: %s", arg
);
764 ctx
->error(ctx
, "multiple windows: %s", arg
);
766 ctx
->error(ctx
, "window not found: %s", arg
);
773 cmd_find_window_offset(const char *winptr
, struct session
*s
, int *ambiguous
)
778 if (winptr
[1] != '\0')
779 offset
= strtonum(winptr
+ 1, 1, INT_MAX
, NULL
);
781 wl
= cmd_lookup_window(s
, winptr
, ambiguous
);
783 if (winptr
[0] == '+')
784 wl
= winlink_next_by_number(s
->curw
, s
, offset
);
786 wl
= winlink_previous_by_number(s
->curw
, s
, offset
);
793 * Find the target session and window index, whether or not it exists in the
794 * session. Return -2 on error or -1 if no window index is specified. This is
795 * used when parsing an argument for a window target that may not exist (for
796 * example if it is going to be created).
799 cmd_find_index(struct cmd_ctx
*ctx
, const char *arg
, struct session
**sp
)
804 char *sessptr
= NULL
;
805 int idx
, ambiguous
= 0;
808 * Find the current session. There must always be a current session, if
809 * it can't be found, report an error.
811 if ((s
= cmd_current_session(ctx
)) == NULL
) {
812 ctx
->error(ctx
, "can't establish current session");
816 /* A NULL argument means the current session and "no window" (-1). */
823 /* Time to look at the argument. If it is empty, that is an error. */
827 /* Find the separating colon. If none, assume the current session. */
828 winptr
= strchr(arg
, ':');
831 winptr
++; /* skip : */
832 sessptr
= xstrdup(arg
);
833 *strchr(sessptr
, ':') = '\0';
835 /* Try to lookup the session if present. */
836 if (sessptr
!= NULL
&& *sessptr
!= '\0') {
837 if ((s
= cmd_lookup_session(sessptr
, &ambiguous
)) == NULL
)
844 * Then work out the window. An empty string is a new window otherwise
845 * try to look it up in the session.
849 else if (winptr
[0] == '!' && winptr
[1] == '\0') {
850 if ((wl
= TAILQ_FIRST(&s
->lastw
)) == NULL
)
853 } else if (winptr
[0] == '+' || winptr
[0] == '-') {
854 if ((idx
= cmd_find_index_offset(winptr
, s
, &ambiguous
)) < 0)
856 } else if ((idx
= cmd_lookup_index(s
, winptr
, &ambiguous
)) == -1)
865 * No colon in the string, first try special cases, then as a window
866 * and lastly as a session.
868 if (arg
[0] == '!' && arg
[1] == '\0') {
869 if ((wl
= TAILQ_FIRST(&s
->lastw
)) == NULL
)
872 } else if (arg
[0] == '+' || arg
[0] == '-') {
873 if ((idx
= cmd_find_index_offset(arg
, s
, &ambiguous
)) < 0)
875 } else if ((idx
= cmd_lookup_index(s
, arg
, &ambiguous
)) == -1)
886 if ((s
= cmd_lookup_session(arg
, &ambiguous
)) == NULL
)
896 ctx
->error(ctx
, "multiple sessions: %s", arg
);
898 ctx
->error(ctx
, "session not found: %s", arg
);
906 ctx
->error(ctx
, "invalid index: %s", arg
);
914 ctx
->error(ctx
, "multiple windows: %s", arg
);
916 ctx
->error(ctx
, "window not found: %s", arg
);
923 cmd_find_index_offset(const char *winptr
, struct session
*s
, int *ambiguous
)
927 if (winptr
[1] != '\0')
928 offset
= strtonum(winptr
+ 1, 1, INT_MAX
, NULL
);
930 idx
= cmd_lookup_index(s
, winptr
, ambiguous
);
932 if (winptr
[0] == '+') {
933 if (s
->curw
->idx
== INT_MAX
)
934 idx
= cmd_lookup_index(s
, winptr
, ambiguous
);
936 idx
= s
->curw
->idx
+ offset
;
938 if (s
->curw
->idx
== 0)
939 idx
= cmd_lookup_index(s
, winptr
, ambiguous
);
941 idx
= s
->curw
->idx
- offset
;
949 * Find the target session, window and pane number or report an error and
950 * return NULL. The pane number is separated from the session:window by a .,
951 * such as mysession:mywindow.0.
954 cmd_find_pane(struct cmd_ctx
*ctx
,
955 const char *arg
, struct session
**sp
, struct window_pane
**wpp
)
959 struct layout_cell
*lc
;
960 const char *period
, *errstr
;
961 char *winptr
, *paneptr
;
964 /* Get the current session. */
965 if ((s
= cmd_current_session(ctx
)) == NULL
) {
966 ctx
->error(ctx
, "can't establish current session");
972 /* A NULL argument means the current session, window and pane. */
974 *wpp
= s
->curw
->window
->active
;
978 /* Look for a separating period. */
979 if ((period
= strrchr(arg
, '.')) == NULL
)
982 /* Pull out the window part and parse it. */
983 winptr
= xstrdup(arg
);
984 winptr
[period
- arg
] = '\0';
987 else if ((wl
= cmd_find_window(ctx
, winptr
, sp
)) == NULL
)
990 /* Find the pane section and look it up. */
991 paneptr
= winptr
+ (period
- arg
) + 1;
992 if (*paneptr
== '\0')
993 *wpp
= wl
->window
->active
;
994 else if (paneptr
[0] == '+' || paneptr
[0] == '-')
995 *wpp
= cmd_find_pane_offset(paneptr
, wl
);
997 idx
= strtonum(paneptr
, 0, INT_MAX
, &errstr
);
1000 *wpp
= window_pane_at_index(wl
->window
, idx
);
1009 /* Try pane string description. */
1010 if ((lc
= layout_find_string(wl
->window
, paneptr
)) == NULL
) {
1011 ctx
->error(ctx
, "can't find pane: %s", paneptr
);
1020 /* Try as a pane number alone. */
1021 idx
= strtonum(arg
, 0, INT_MAX
, &errstr
);
1025 /* Try index in the current session and window. */
1026 if ((*wpp
= window_pane_at_index(s
->curw
->window
, idx
)) == NULL
)
1032 /* Try pane string description. */
1033 if ((lc
= layout_find_string(s
->curw
->window
, arg
)) != NULL
) {
1038 /* Try as a window and use the active pane. */
1039 if ((wl
= cmd_find_window(ctx
, arg
, sp
)) != NULL
)
1040 *wpp
= wl
->window
->active
;
1048 struct window_pane
*
1049 cmd_find_pane_offset(const char *paneptr
, struct winlink
*wl
)
1051 struct window
*w
= wl
->window
;
1052 struct window_pane
*wp
= w
->active
;
1055 if (paneptr
[1] != '\0')
1056 offset
= strtonum(paneptr
+ 1, 1, INT_MAX
, NULL
);
1058 if (paneptr
[0] == '+')
1059 wp
= window_pane_next_by_number(w
, wp
, offset
);
1061 wp
= window_pane_previous_by_number(w
, wp
, offset
);
1067 /* Replace the first %% or %idx in template by s. */
1069 cmd_template_replace(char *template, const char *s
, int idx
)
1076 if (strstr(template, "%") == NULL
)
1077 return (xstrdup(template));
1085 while (*ptr
!= '\0') {
1086 switch (ch
= *ptr
++) {
1088 if (*ptr
< '1' || *ptr
> '9' || *ptr
- '0' != idx
) {
1089 if (*ptr
!= '%' || replaced
)
1096 buf
= xrealloc(buf
, 1, len
+ 1);
1097 strlcat(buf
, s
, len
+ 1);
1100 buf
= xrealloc(buf
, 1, len
+ 2);