diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:21:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:21:27 +0000 |
commit | 8094e822873fd22d614a1e2fe7d0dfd63f9d2a47 (patch) | |
tree | 81ecc6b2e938155a239ac1563deea3c4f910ea55 /names.c | |
parent | 1ec43549989208019f6e5b71348594067819aed4 (diff) | |
download | rtmux-8094e822873fd22d614a1e2fe7d0dfd63f9d2a47.tar.gz rtmux-8094e822873fd22d614a1e2fe7d0dfd63f9d2a47.tar.bz2 rtmux-8094e822873fd22d614a1e2fe7d0dfd63f9d2a47.zip |
Add option command-prefix which is automatically prepended to any
command (apart from a naked default-shell). The default is "exec ".
Diffstat (limited to 'names.c')
-rw-r--r-- | names.c | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -26,8 +26,8 @@ #include "tmux.h" -void window_name_callback(unused int, unused short, void *); -char *parse_window_name(const char *); +void window_name_callback(int, short, void *); +char *parse_window_name(struct window *, const char *); void queue_window_name(struct window *w) @@ -73,9 +73,9 @@ window_name_callback(unused int fd, unused short events, void *data) */ if (w->active->cmd != NULL && *w->active->cmd == '\0' && name != NULL && name[0] == '-' && name[1] != '\0') - wname = parse_window_name(name + 1); + wname = parse_window_name(w, name + 1); else - wname = parse_window_name(name); + wname = parse_window_name(w, name); free(name); } @@ -98,18 +98,22 @@ default_window_name(struct window *w) if (w->active->screen != &w->active->base) return (xstrdup("[tmux]")); if (w->active->cmd != NULL && *w->active->cmd != '\0') - return (parse_window_name(w->active->cmd)); - return (parse_window_name(w->active->shell)); + return (parse_window_name(w, w->active->cmd)); + return (parse_window_name(w, w->active->shell)); } char * -parse_window_name(const char *in) +parse_window_name(struct window *w, const char *in) { - char *copy, *name, *ptr; + char *copy, *name, *ptr, *prefix; + size_t prefixlen; + + prefix = options_get_string(&w->options, "command-prefix"); + prefixlen = strlen(prefix); name = copy = xstrdup(in); - if (strncmp(name, "exec ", (sizeof "exec ") - 1) == 0) - name = name + (sizeof "exec ") - 1; + if (strncmp(name, prefix, prefixlen) == 0) + name = name + prefixlen; while (*name == ' ') name++; |