Remove the -I part of show-messages which isn't really that useful; the

server start time can now be accessed with a new start_time format (use:
tmux display -p '#{t:start_time}')
This commit is contained in:
nicm
2015-11-24 21:52:06 +00:00
parent 9fd3318dd8
commit 1e2df2d464
6 changed files with 17 additions and 33 deletions

6
tmux.h
View File

@ -1431,9 +1431,9 @@ extern struct options *global_options;
extern struct options *global_s_options;
extern struct options *global_w_options;
extern struct environ *global_environ;
extern char *shell_cmd;
extern time_t start_time;
extern char socket_path[PATH_MAX];
extern char *shell_cmd;
extern struct timeval start_time;
extern char socket_path[PATH_MAX];
const char *getshell(void);
int checkshell(const char *);
int areshell(const char *);