diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-03 08:20:30 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-04-03 08:20:30 +0000 |
commit | 0dbbe52b63ffab48f521b6d2ba15c468441effd1 (patch) | |
tree | 0db0f8d9e2f49e96199f7baf94817153cec43011 /usr.bin/tmux/tmux.h | |
parent | 6e7110783a3e8ba561122d06549267f5bae0f7db (diff) |
Work out mouse scroll wheel effect when the mouse is first detected and
store it in struct mouse_event, reduce the scroll size the 3 but allow
shift to reduce it to 1 and meta and ctrl to multiply by 3 if the
terminal supports them, also support wheel in choose mode. From Marcel
Partap.
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 ac9edd4aab3..e8131556819 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.447 2014/04/02 18:12:18 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.448 2014/04/03 08:20:29 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1168,6 +1168,7 @@ struct mouse_event { u_int button; u_int clicks; + u_int scroll; int wheel; int event; |