diff options
author | 2011-01-15 00:16:00 +0000 | |
---|---|---|
committer | 2011-01-15 00:16:00 +0000 | |
commit | 2056dbce74bb4b566f4228fbcd566c3067b4ed31 (patch) | |
tree | dbb1b5d31eb8aa2518efcbfc6ba2a424a85dbdd8 /usr.bin/tmux/input.c | |
parent | Support -x and -y for new-session to specify the initial size of the (diff) | |
download | wireguard-openbsd-2056dbce74bb4b566f4228fbcd566c3067b4ed31.tar.xz wireguard-openbsd-2056dbce74bb4b566f4228fbcd566c3067b4ed31.zip |
Mouse highlight mode (1001) requires a program to cooperate so
supporting it through tmux is not as easy as this, remove it for now.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index d13a1f5443e..8b839638f34 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.33 2011/01/03 23:35:21 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.34 2011/01/15 00:16:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1201,10 +1201,6 @@ input_csi_dispatch(struct input_ctx *ictx) screen_write_mousemode_on( &ictx->ctx, MODE_MOUSE_STANDARD); break; - case 1001: - screen_write_mousemode_on( - &ictx->ctx, MODE_MOUSE_HIGHLIGHT); - break; case 1002: screen_write_mousemode_on( &ictx->ctx, MODE_MOUSE_BUTTON); |