mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Store time lines are scrolled into history and display in copy mode.
This commit is contained in:
13
format.c
13
format.c
@ -3387,12 +3387,12 @@ format_quote_style(const char *s)
|
||||
}
|
||||
|
||||
/* Make a prettier time. */
|
||||
static char *
|
||||
format_pretty_time(time_t t)
|
||||
char *
|
||||
format_pretty_time(time_t t, int seconds)
|
||||
{
|
||||
struct tm now_tm, tm;
|
||||
time_t now, age;
|
||||
char s[6];
|
||||
char s[9];
|
||||
|
||||
time(&now);
|
||||
if (now < t)
|
||||
@ -3404,7 +3404,10 @@ format_pretty_time(time_t t)
|
||||
|
||||
/* Last 24 hours. */
|
||||
if (age < 24 * 3600) {
|
||||
strftime(s, sizeof s, "%H:%M", &tm);
|
||||
if (seconds)
|
||||
strftime(s, sizeof s, "%H:%M:%S", &tm);
|
||||
else
|
||||
strftime(s, sizeof s, "%H:%M", &tm);
|
||||
return (xstrdup(s));
|
||||
}
|
||||
|
||||
@ -3509,7 +3512,7 @@ found:
|
||||
if (t == 0)
|
||||
return (NULL);
|
||||
if (modifiers & FORMAT_PRETTY)
|
||||
found = format_pretty_time(t);
|
||||
found = format_pretty_time(t, 0);
|
||||
else {
|
||||
if (time_format != NULL) {
|
||||
localtime_r(&t, &tm);
|
||||
|
Reference in New Issue
Block a user