aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-07-20 15:50:04 +0000
committernicm <nicm>2015-07-20 15:50:04 +0000
commit92af3766ecc456bd8ade8fe5746d27f4557fdaa8 (patch)
tree371174df95c9f8b2bd7e515505325853c88040d0 /tmux.h
parentd4ce210713cc907fc69497c51cf9b64d2f414ca4 (diff)
downloadrtmux-92af3766ecc456bd8ade8fe5746d27f4557fdaa8.tar.gz
rtmux-92af3766ecc456bd8ade8fe5746d27f4557fdaa8.tar.bz2
rtmux-92af3766ecc456bd8ade8fe5746d27f4557fdaa8.zip
Add an option (history-file) for a file to save/restore command prompt
history, from Olof-Joachim Frahm.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 3aceff9d..7edc4636 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1469,6 +1469,7 @@ int checkshell(const char *);
int areshell(const char *);
void setblocking(int, int);
__dead void shell_exec(const char *, const char *);
+const char *find_home(void);
/* cfg.c */
extern struct cmd_q *cfg_cmd_q;
@@ -1943,6 +1944,8 @@ 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 *, const char *);
+void status_prompt_load_history(void);
+void status_prompt_save_history(void);
/* resize.c */
void recalculate_sizes(void);