handle KP_Seperator #2452

pull/2460/head
nick black 3 years ago
parent 1c07bd2554
commit 4d727e5a59
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -108,6 +108,7 @@ extern "C" {
#define NCKEY_EXIT preterunicode(133)
#define NCKEY_PRINT preterunicode(134)
#define NCKEY_REFRESH preterunicode(135)
#define NCKEY_SEPARATOR preterunicode(136)
// these keys aren't generally available outside of the kitty protocol
#define NCKEY_CAPS_LOCK preterunicode(150)
#define NCKEY_SCROLL_LOCK preterunicode(151)

@ -653,6 +653,7 @@ kitty_functional(uint32_t val){
case 57413: val = '+'; break;
case 57414: val = NCKEY_ENTER; break;
case 57415: val = '='; break;
case 57416: val = NCKEY_SEPARATOR; break;
case 57417: val = NCKEY_LEFT; break;
case 57418: val = NCKEY_RIGHT; break;
case 57419: val = NCKEY_UP; break;

Loading…
Cancel
Save