From 0d88f8a78bc0d91ab6fa53c9109f7316bfe5ffbb Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 16 Jul 2018 08:48:22 +0000 Subject: Add an "Any" key to run a command if a key is pressed that is not bound in the current key table. GitHub issue 1404. --- tmux.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index aaafd2e7..e71f9481 100644 --- a/tmux.h +++ b/tmux.h @@ -136,6 +136,9 @@ enum { KEYC_FOCUS_IN = KEYC_BASE, KEYC_FOCUS_OUT, + /* "Any" key, used if not found in key table. */ + KEYC_ANY, + /* Paste brackets. */ KEYC_PASTE_START, KEYC_PASTE_END, -- cgit