From c6abdb1890501a19cf9ef859639fec2839d820f0 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Wed, 4 Nov 2020 18:50:41 +0000 Subject: [PATCH] fix(keys): Replace GUI with Application / Context Menu This was a misrepresentation in the standardized keys that originated in earlier code. --- app/include/dt-bindings/zmk/keys.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/include/dt-bindings/zmk/keys.h b/app/include/dt-bindings/zmk/keys.h index cce3c244..8ce1145e 100644 --- a/app/include/dt-bindings/zmk/keys.h +++ b/app/include/dt-bindings/zmk/keys.h @@ -493,12 +493,12 @@ /* Keyboard Pipe */ #define PIPE2 (LS(HID_USAGE_KEY_KEYBOARD_NON_US_BACKSLASH_AND_PIPE)) -/* Keyboard GUI (Windows / Command / Meta) */ -#define GUI (HID_USAGE_KEY_KEYBOARD_APPLICATION) -#define WIN (GUI) -#define COMMAND (GUI) -#define CMD (GUI) -#define META (GUI) +/* Keyboard Application (Context Menu) */ +#define K_APPLICATION (HID_USAGE_KEY_KEYBOARD_APPLICATION) +#define K_APP (K_APPLICATION) +#define K_CONTEXT_MENU (K_APPLICATION) +#define K_CMENU (K_APPLICATION) +#define GUI (K_APPLICATION) // WARNING: DEPRECATED (DO NOT USE) /* Keyboard Power */ #define K_POWER (HID_USAGE_KEY_KEYBOARD_POWER)