summaryrefslogtreecommitdiffstats
path: root/key-string.c
diff options
context:
space:
mode:
authornicm <nicm>2018-08-22 20:06:14 +0000
committernicm <nicm>2018-08-22 20:06:14 +0000
commit55db3623bf7084a161d457f0c0b891a46a444a77 (patch)
treec11375792c9c9cf1d590b08af91616497cfe84e4 /key-string.c
parent98a478ceb3d4b8f6d1951b0b12891e54abee96d0 (diff)
Add StatusLeft and StatusRight mouse key modifiers for the left and
right parts of the status line.
Diffstat (limited to 'key-string.c')
-rw-r--r--key-string.c4
1 files changed, 4 insertions, 0 deletions
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) {