From be112ee3124d19818b0e0b5c37d57381fe37d146 Mon Sep 17 00:00:00 2001 From: vcaesar Date: Thu, 19 Dec 2019 18:29:30 -0400 Subject: [PATCH] Update linux upper code, add more special key support --- key/keypress_c.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/key/keypress_c.h b/key/keypress_c.h index b654605..5630828 100644 --- a/key/keypress_c.h +++ b/key/keypress_c.h @@ -179,7 +179,7 @@ void tapKeyCode(MMKeyCode code, MMKeyFlags flags){ return true; } - char *special = "~!@#$%^&*()_+"; + char *special = "~!@#$%^&*()_+{}|:\"<>?"; while (*special) { if (*special == c) { return true;