diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-19 23:07:11 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-19 23:07:11 +0000 |
commit | 7cebf4768b90bd004eadcec4eb7ff67d6868183f (patch) | |
tree | cb71933a80bebe19927c0fdfafbc7c2d4221d916 /tmux.h | |
parent | ead089ece62c00ec5c2c4b012a5ff2eecef6a7b3 (diff) | |
download | rtmux-7cebf4768b90bd004eadcec4eb7ff67d6868183f.tar.gz rtmux-7cebf4768b90bd004eadcec4eb7ff67d6868183f.tar.bz2 rtmux-7cebf4768b90bd004eadcec4eb7ff67d6868183f.zip |
Hide cursor with flag.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 <nicm@users.sourceforge.net> @@ -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; }; |