diff options
author | nicm <nicm> | 2015-10-25 22:29:17 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-10-25 22:29:17 +0000 |
commit | e65306d8e7bd6db99bd0746cd16a21d2c066b8db (patch) | |
tree | 24b3e8cc7e367c16627ade3989389d85744c83e2 /tmux.h | |
parent | 3faa51a0caebb56746988ae7f5e9e9f649dc42b6 (diff) | |
download | rtmux-e65306d8e7bd6db99bd0746cd16a21d2c066b8db.tar.gz rtmux-e65306d8e7bd6db99bd0746cd16a21d2c066b8db.tar.bz2 rtmux-e65306d8e7bd6db99bd0746cd16a21d2c066b8db.zip |
Extend the modifiers allowed before formats: as well as the existing
#{=10:...} length limit, add #{t:...} to convert a time_t format to a
string, #{b:...} for basename and #{d:...} for dirname. Remove all the
foo_string time formats as they can now be replaced by "t:", for example
#{window_activity_string} becomes #{t:window_activity}.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1453,7 +1453,6 @@ struct format_tree *format_create_flags(int); void format_free(struct format_tree *); void printflike(3, 4) format_add(struct format_tree *, const char *, const char *, ...); -const char *format_find(struct format_tree *, const char *); char *format_expand_time(struct format_tree *, const char *, time_t); char *format_expand(struct format_tree *, const char *); void format_defaults(struct format_tree *, struct client *, |