Add explicit keys for the bracketed paste sequences, both to avoid mix

ups with other keys and to make logs clearer.
This commit is contained in:
nicm
2017-06-12 07:04:24 +00:00
parent adcd5aff6f
commit 8037159f93
4 changed files with 16 additions and 0 deletions

View File

@ -251,6 +251,10 @@ key_string_lookup_key(key_code key)
return ("FocusIn");
if (key == KEYC_FOCUS_OUT)
return ("FocusOut");
if (key == KEYC_PASTE_START)
return ("PasteStart");
if (key == KEYC_PASTE_END)
return ("PasteEnd");
if (key == KEYC_MOUSE)
return ("Mouse");
if (key == KEYC_DRAGGING)