aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-12-11 16:15:02 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-12-11 16:15:02 +0000
commit095ffe9cd1465b2eab2ae25f17453f531bf9598b (patch)
tree88ea936525b26e11a09e8455edf32eface53001f /tmux.h
parent1a4d78c7af5826e653ae1a3c010ef2171dcdb822 (diff)
downloadrtmux-095ffe9cd1465b2eab2ae25f17453f531bf9598b.tar.gz
rtmux-095ffe9cd1465b2eab2ae25f17453f531bf9598b.tar.bz2
rtmux-095ffe9cd1465b2eab2ae25f17453f531bf9598b.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.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index 3fddc7af..84763bc7 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.585 2010-12-06 22:52:21 nicm Exp $ */
+/* $Id: tmux.h,v 1.586 2010-12-11 16:15:02 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1145,13 +1145,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;