diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-24 09:29:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-24 09:29:01 +0000 |
commit | 420e6fb4b9f11a32f753f5dc15ff734f11635e16 (patch) | |
tree | 6ec6654d457e89efa86aa92ecfc82cebf7f1836d /usr.bin/tmux/tmux.h | |
parent | 305b745009bf24b8ebbc52b8222585c7e8aa0f92 (diff) |
Handle focus events from the terminal, from Aaron Jensen.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 7cace64adb8..b4f391ef894 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.395 2013/03/24 09:27:20 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.396 2013/03/24 09:28:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -241,6 +241,9 @@ enum key_code { KEYC_KP_ENTER, KEYC_KP_ZERO, KEYC_KP_PERIOD, + + KEYC_FOCUS_IN, + KEYC_FOCUS_OUT, }; /* Termcap codes. */ @@ -1320,6 +1323,7 @@ struct client { #define CLIENT_READONLY 0x800 #define CLIENT_REDRAWWINDOW 0x1000 #define CLIENT_CONTROL 0x2000 +#define CLIENT_FOCUSED 0x4000 int flags; struct event identify_timer; |