diff options
author | nicm <nicm> | 2018-08-22 20:06:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-08-22 20:06:14 +0000 |
commit | 55db3623bf7084a161d457f0c0b891a46a444a77 (patch) | |
tree | c11375792c9c9cf1d590b08af91616497cfe84e4 /key-string.c | |
parent | 98a478ceb3d4b8f6d1951b0b12891e54abee96d0 (diff) | |
download | rtmux-55db3623bf7084a161d457f0c0b891a46a444a77.tar.gz rtmux-55db3623bf7084a161d457f0c0b891a46a444a77.tar.bz2 rtmux-55db3623bf7084a161d457f0c0b891a46a444a77.zip |
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.c | 4 |
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) { |