From 55db3623bf7084a161d457f0c0b891a46a444a77 Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 22 Aug 2018 20:06:14 +0000 Subject: Add StatusLeft and StatusRight mouse key modifiers for the left and right parts of the status line. --- key-string.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'key-string.c') diff --git a/key-string.c b/key-string.c index 45073efd..bb49b59f 100644 --- a/key-string.c +++ b/key-string.c @@ -271,6 +271,10 @@ key_string_lookup_key(key_code key) return ("MouseMovePane"); if (key == KEYC_MOUSEMOVE_STATUS) return ("MouseMoveStatus"); + if (key == KEYC_MOUSEMOVE_STATUS_LEFT) + return ("MouseMoveStatusLeft"); + if (key == KEYC_MOUSEMOVE_STATUS_RIGHT) + return ("MouseMoveStatusRight"); if (key == KEYC_MOUSEMOVE_BORDER) return ("MouseMoveBorder"); if (key >= KEYC_USER && key < KEYC_USER + KEYC_NUSER) { -- cgit