aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2020-05-16 16:16:07 +0000
committernicm <nicm>2020-05-16 16:16:07 +0000
commitc914abfa19938fe0e41941879649b7a40e192082 (patch)
tree54b011ea618aeb84835cf64a937a08c74f846b5d /tmux.h
parent72984c48347ddfd1d435f8a9ffcdf334c4b28389 (diff)
downloadrtmux-c914abfa19938fe0e41941879649b7a40e192082.tar.gz
rtmux-c914abfa19938fe0e41941879649b7a40e192082.tar.bz2
rtmux-c914abfa19938fe0e41941879649b7a40e192082.zip
Expand target from client and use it to expand the prompt.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index c2b8af40..3ccb005a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1504,7 +1504,7 @@ struct client_file {
client_file_cb cb;
void *data;
- RB_ENTRY (client_file) entry;
+ RB_ENTRY(client_file) entry;
};
RB_HEAD(client_files, client_file);
@@ -2359,8 +2359,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);