aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-09-03 09:57:57 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-09-03 09:57:57 +0000
commit7263fa36eb3d4488b89d01837dc4bd533e6f061a (patch)
treece66b33f248c3acadefb7302946d323b657dfe18 /tmux.h
parentadc9fad4acc2f7e045b23b3672bca7f24ba10566 (diff)
downloadrtmux-7263fa36eb3d4488b89d01837dc4bd533e6f061a.tar.gz
rtmux-7263fa36eb3d4488b89d01837dc4bd533e6f061a.tar.bz2
rtmux-7263fa36eb3d4488b89d01837dc4bd533e6f061a.zip
add cmd-choose-list to allow arbitrary options to be selected. From
Thomas Adam.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 85f5fb68..c1095681 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1716,6 +1716,7 @@ extern const struct cmd_entry cmd_break_pane_entry;
extern const struct cmd_entry cmd_capture_pane_entry;
extern const struct cmd_entry cmd_choose_buffer_entry;
extern const struct cmd_entry cmd_choose_client_entry;
+extern const struct cmd_entry cmd_choose_list_entry;
extern const struct cmd_entry cmd_choose_session_entry;
extern const struct cmd_entry cmd_choose_tree_entry;
extern const struct cmd_entry cmd_choose_window_entry;
@@ -2204,6 +2205,9 @@ struct window_choose_data *window_choose_add_window(struct window_pane *,
struct window_choose_data *window_choose_add_session(struct window_pane *,
struct cmd_ctx *, struct session *, const char *,
char *, u_int);
+struct window_choose_data *window_choose_add_item(struct window_pane *,
+ struct cmd_ctx *, struct winlink *, const char *,
+ char *, u_int);
/* names.c */
void queue_window_name(struct window *);