diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-08-25 13:53:39 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-08-25 13:53:39 +0000 |
commit | 8fd77cbb5b9e81a14d52f9ddcf765d3ce557ed86 (patch) | |
tree | f15f24cd859da56f60f2fcac20b2b3dd565e0ae3 /tmux.h | |
parent | c1653ff65452c01f0c2c41dbcb3c6d0eb241348b (diff) | |
download | rtmux-8fd77cbb5b9e81a14d52f9ddcf765d3ce557ed86.tar.gz rtmux-8fd77cbb5b9e81a14d52f9ddcf765d3ce557ed86.tar.bz2 rtmux-8fd77cbb5b9e81a14d52f9ddcf765d3ce557ed86.zip |
Sync OpenBSD patchset 294:
Add a choose-client command and extend choose-{session,window} to accept a
template. After a choice is made, %% (or %1) in the template is replaced by the
name of the session, window or client suitable for -t and the result executed
as a command. So, for example, "choose-window "killw -t '%%'"" will kill the
selected window.
The defaults if no template is given are (as now) select-window for
choose-window, switch-client for choose-session, and detach-client for
choose-client (now bound to D).
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.428 2009-08-25 13:11:24 tcunha Exp $ */ +/* $Id: tmux.h,v 1.429 2009-08-25 13:53:39 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1266,10 +1266,12 @@ int cmd_find_index( struct cmd_ctx *, const char *, struct session **); struct winlink *cmd_find_pane(struct cmd_ctx *, const char *, struct session **, struct window_pane **); +char *cmd_template_replace(char *, const char *, int); extern const struct cmd_entry *cmd_table[]; extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; extern const struct cmd_entry cmd_break_pane_entry; +extern const struct cmd_entry cmd_choose_client_entry; extern const struct cmd_entry cmd_choose_session_entry; extern const struct cmd_entry cmd_choose_window_entry; extern const struct cmd_entry cmd_clear_history_entry; |