diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-14 10:35:26 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-14 10:35:26 +0100 |
commit | 12eceaf2b3ef2b028a55d8ad11951be700be0446 (patch) | |
tree | daf397baf883145b4294274a557f2b54b395a181 /tmux.h | |
parent | 09a2246b00fdb5b18db13b65d6496511dabba238 (diff) | |
download | rtmux-12eceaf2b3ef2b028a55d8ad11951be700be0446.tar.gz rtmux-12eceaf2b3ef2b028a55d8ad11951be700be0446.tar.bz2 rtmux-12eceaf2b3ef2b028a55d8ad11951be700be0446.zip |
Expand target from client and use it to expand the prompt.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2361,8 +2361,9 @@ void printflike(3, 4) status_message_set(struct client *, int, const char *, ...); void status_message_clear(struct client *); int status_message_redraw(struct client *); -void status_prompt_set(struct client *, const char *, const char *, - prompt_input_cb, prompt_free_cb, void *, int); +void status_prompt_set(struct client *, struct cmd_find_state *, + const char *, const char *, prompt_input_cb, prompt_free_cb, + void *, int); void status_prompt_clear(struct client *); int status_prompt_redraw(struct client *); int status_prompt_key(struct client *, key_code); |