summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-07-02 21:05:44 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-07-02 21:05:44 +0000
commitad60a2c952694919ed3985855ef5a00939a937b8 (patch)
treecea7067924808b9a62d4cc02b32a358aface6913 /tmux.h
parent1202284f3728f98e2c40648f6813c64676547ef9 (diff)
Allow the initial context on prompts to be set with the new -I option to
command-prompt. From Tiago Cunha.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index 2f7fcd6a..5c2a5a81 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1704,12 +1704,12 @@ char *status_replace(struct client *, struct session *,
void printflike2 status_message_set(struct client *, const char *, ...);
void status_message_clear(struct client *);
int status_message_redraw(struct client *);
-void status_prompt_set(struct client *, const char *,
+void status_prompt_set(struct client *, const char *, const char *,
int (*)(void *, const char *), void (*)(void *), void *, int);
void status_prompt_clear(struct client *);
int status_prompt_redraw(struct client *);
void status_prompt_key(struct client *, int);
-void status_prompt_update(struct client *, const char *);
+void status_prompt_update(struct client *, const char *, const char *);
/* resize.c */
void recalculate_sizes(void);