diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-12-11 16:05:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-12-11 16:05:57 +0000 |
commit | 7ce77ffc9c4973197377ecdfa329ba1cdd6af75e (patch) | |
tree | b760fd9b69b826e6e136df5fba658e3c0b3fee65 /tmux.h | |
parent | 6be32c89c5b52f4a07fe9694bc4f899be1389d17 (diff) | |
download | rtmux-7ce77ffc9c4973197377ecdfa329ba1cdd6af75e.tar.gz rtmux-7ce77ffc9c4973197377ecdfa329ba1cdd6af75e.tar.bz2 rtmux-7ce77ffc9c4973197377ecdfa329ba1cdd6af75e.zip |
Make the prompt history global for all clients which is much more useful than per-client history.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1147,13 +1147,11 @@ struct client { int (*prompt_callbackfn)(void *, const char *); void (*prompt_freefn)(void *); void *prompt_data; + u_int prompt_hindex; #define PROMPT_SINGLE 0x1 int prompt_flags; - u_int prompt_hindex; - ARRAY_DECL(, char *) prompt_hdata; - struct mode_key_data prompt_mdata; struct session *session; |