Add StatusLeft and StatusRight mouse key modifiers for the left and

right parts of the status line.
This commit is contained in:
nicm
2018-08-22 20:06:14 +00:00
parent 98a478ceb3
commit 55db3623bf
5 changed files with 116 additions and 16 deletions

View File

@ -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) {