From: Debayan Sutradhar Date: Fri, 19 Mar 2021 09:20:22 +0530 Subject: Merge pull request #23 from nbeal/patch-1 --- Merge pull request #23 from nbeal/patch-1 Added ESC key --- --- 'a/hotkeyaction/src/main/java/com/stream_pi/hotkeyaction/HotkeyAction.java' +++ b/hotkeyaction/src/main/java/com/stream_pi/hotkeyaction/HotkeyAction.java @@ -229,6 +229,10 @@ public class HotkeyAction extends Normal case "CONTROL": return CONTROL; case "CAPS LOCK": return CAPS; + + case "ESCAPE": + case "ESC": + return ESCAPE; case "NUM UP": return KP_UP; case "UP": return UP;