diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2024-09-16 20:28:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2024-09-16 20:28:23 +0000 |
commit | d3629fb7f0e5555191c03e9e799d25183f0d4ba6 (patch) | |
tree | a83756ccde1bfc889984ab2c866d0fa8947a8515 /usr.bin/tmux/tmux.h | |
parent | 5fc70b9425f8da0468713fbf2e2c2cd61af60f0f (diff) |
Add a prefix timeout option, from Conor Taylor in GitHub issue 4108.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 99f5343b5f8..f6bfb91b50a 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1226 2024/08/27 07:49:07 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1227 2024/09/16 20:28:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1982,6 +1982,7 @@ RB_HEAD(key_bindings, key_binding); struct key_table { const char *name; + struct timeval activity_time; struct key_bindings key_bindings; struct key_bindings default_key_bindings; |