summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2013-01-15 22:55:29 +0000
committerNicholas Marriott <nicm@openbsd.org>2013-01-15 22:55:29 +0000
commitbc2e4a36df2023a738c433779ba8f1e08b6951fe (patch)
tree2f83a871626833070d374eca0b1aa55684ac1c03 /tmux.h
parent854e8ae04d15c16b688ba38119656aee134548dd (diff)
If timing between keys is less than (by default) 1 millisecond, assume
the text is being pasted. assume-paste-time option changes the value (0 disables). Based on a diff from Marcin Kulik.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index c1fec028..f1a9e4d4 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1095,6 +1095,7 @@ struct session {
struct timeval creation_time;
struct timeval activity_time;
+ struct timeval last_activity_time;
u_int sx;
u_int sy;
@@ -1707,7 +1708,6 @@ char *paste_print(struct paste_buffer *, size_t);
void paste_send_pane(struct paste_buffer *, struct window_pane *,
const char *, int);
-
/* clock.c */
extern const char clock_table[14][5][5];
void clock_draw(struct screen_write_ctx *, int, int);