diff options
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index e8a1cb6df82..6d5b40fbeb4 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.116 2017/02/16 12:56:01 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.117 2017/02/19 07:55:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1779,6 +1779,9 @@ input_csi_dispatch_sgr(struct input_ctx *ictx) case 27: gc->attr &= ~GRID_ATTR_REVERSE; break; + case 28: + gc->attr &= ~GRID_ATTR_HIDDEN; + break; case 30: case 31: case 32: |