summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2023-01-16 14:01:10 +0000
committerThomas Adam <thomas@xteddy.org>2023-01-16 14:01:10 +0000
commit789cb91f311c1030f20d0b711793e0a9bdacba7a (patch)
tree62ec63a5005d23bdbc3efc0463ddffae92e4e15e /tmux.h
parent42895efac3f19bc61dcfbe094d434256f02306b8 (diff)
parenteb1f8d70a7d1fe4b0fe604d5a36fcbc2babef249 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/tmux.h b/tmux.h
index 04818fc8..443b2ee3 100644
--- a/tmux.h
+++ b/tmux.h
@@ -132,13 +132,14 @@ struct winlink;
#define KEYC_SHIFT 0x00400000000000ULL
/* Key flag bits. */
-#define KEYC_LITERAL 0x01000000000000ULL
-#define KEYC_KEYPAD 0x02000000000000ULL
-#define KEYC_CURSOR 0x04000000000000ULL
+#define KEYC_LITERAL 0x01000000000000ULL
+#define KEYC_KEYPAD 0x02000000000000ULL
+#define KEYC_CURSOR 0x04000000000000ULL
#define KEYC_IMPLIED_META 0x08000000000000ULL
#define KEYC_BUILD_MODIFIERS 0x10000000000000ULL
-#define KEYC_VI 0x20000000000000ULL
-#define KEYC_EXTENDED 0x40000000000000ULL
+#define KEYC_VI 0x20000000000000ULL
+#define KEYC_EXTENDED 0x40000000000000ULL
+#define KEYC_SENT 0x80000000000000ULL
/* Masks for key bits. */
#define KEYC_MASK_MODIFIERS 0x00f00000000000ULL