From 7cebf4768b90bd004eadcec4eb7ff67d6868183f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 19 Jun 2008 23:07:11 +0000 Subject: Hide cursor with flag. --- tmux.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 2d066f03..153e4295 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.154 2008-06-19 20:45:21 nicm Exp $ */ +/* $Id: tmux.h,v 1.155 2008-06-19 23:07:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -651,6 +651,9 @@ struct tty { u_char acs[UCHAR_MAX + 1]; +#define TTY_NOCURSOR 0x1 + int flags; + size_t ksize; /* maximum key size */ RB_HEAD(tty_keys, tty_key) ktree; }; -- cgit