summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-07-09 17:02:26 +0100
committerThomas Adam <thomas@xteddy.org>2019-07-09 17:02:26 +0100
commit98ef369b27b631b7893446fbdf7c9d6ce9c1b43a (patch)
tree279d31f5e5c58725740969330041d5294a8828c4 /tmux.h
parent177599efb7d6477db8ce2bc6da82b16cb0327954 (diff)
parentfc2016dbb665f01e795a89632a1bb74294bfc4e1 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index edc6de1f..4efdd7cb 100644
--- a/tmux.h
+++ b/tmux.h
@@ -113,9 +113,10 @@ struct winlink;
#define KEYC_CTRL 0x400000000000ULL
#define KEYC_SHIFT 0x800000000000ULL
#define KEYC_XTERM 0x1000000000000ULL
+#define KEYC_LITERAL 0x2000000000000ULL
/* Mask to obtain key w/o modifiers. */
-#define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT|KEYC_XTERM)
+#define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT|KEYC_XTERM|KEYC_LITERAL)
#define KEYC_MASK_KEY (~KEYC_MASK_MOD)
/* Is this a mouse key? */