From 8037159f937def4bb71dbfb8d664a96de794014f Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 12 Jun 2017 07:04:24 +0000 Subject: Add explicit keys for the bracketed paste sequences, both to avoid mix ups with other keys and to make logs clearer. --- 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 dc09ed98..e1413a15 100644 --- a/key-string.c +++ b/key-string.c @@ -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) -- cgit