aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-06-28 11:36:39 +0000
committernicm <nicm>2017-06-28 11:36:39 +0000
commita00b0d13ede4a0f3743606c79a38eada403f77f9 (patch)
tree374ff3593c70c8e4c062a2619101430423346de6 /tmux.h
parent1e376be13d3ed6bd850b15d0292d73d47ad07e94 (diff)
downloadrtmux-a00b0d13ede4a0f3743606c79a38eada403f77f9.tar.gz
rtmux-a00b0d13ede4a0f3743606c79a38eada403f77f9.tar.bz2
rtmux-a00b0d13ede4a0f3743606c79a38eada403f77f9.zip
Apply the xterm key flag when needed for send-keys, fixes problem
reported by Franky Spamschleuder.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.h b/tmux.h
index ef68c66b..2fdccd2a 100644
--- a/tmux.h
+++ b/tmux.h
@@ -94,8 +94,8 @@ struct tmuxproc;
/* Key modifier bits. */
#define KEYC_ESCAPE 0x200000000000ULL
-#define KEYC_CTRL 0x400000000000ULL
-#define KEYC_SHIFT 0x800000000000ULL
+#define KEYC_CTRL 0x400000000000ULL
+#define KEYC_SHIFT 0x800000000000ULL
#define KEYC_XTERM 0x1000000000000ULL
/* Mask to obtain key w/o modifiers. */