diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-09-03 09:57:57 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2012-09-04 22:37:29 +0100 |
commit | 28fd3a383598c1f3121c754cf0781cd790929f4f (patch) | |
tree | d3af517cb055137697cbf7baa19708df31f08dd9 /tmux.h | |
parent | 996a636713e58709ab15fcb753c7e2614d1ec6c3 (diff) | |
download | rtmux-28fd3a383598c1f3121c754cf0781cd790929f4f.tar.gz rtmux-28fd3a383598c1f3121c754cf0781cd790929f4f.tar.bz2 rtmux-28fd3a383598c1f3121c754cf0781cd790929f4f.zip |
add cmd-choose-list to allow arbitrary options to be selected. From
Thomas Adam.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1712,6 +1712,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; @@ -2200,6 +2201,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 *); |