From 95ed7d48c84198da0ec4b1b9b5de9358a47da753 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 23 Jun 2017 15:36:52 +0000 Subject: Add user-keys option to allow user-defined keys to be set, from Dan Aloni. --- tmux.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index e8f75aff..ef68c66b 100644 --- a/tmux.h +++ b/tmux.h @@ -87,6 +87,10 @@ struct tmuxproc; #define KEYC_NONE 0xffff00000000ULL #define KEYC_UNKNOWN 0xfffe00000000ULL #define KEYC_BASE 0x000010000000ULL +#define KEYC_USER 0x000020000000ULL + +/* Available user keys. */ +#define KEYC_NUSER 1000 /* Key modifier bits. */ #define KEYC_ESCAPE 0x200000000000ULL -- cgit