summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-11-04 18:50:41 +0000
committerPete Johanson <peter@peterjohanson.com>2020-11-04 14:31:59 -0500
commitc6abdb1890501a19cf9ef859639fec2839d820f0 (patch)
tree5c6acd1af6a80721a36f34294a62756fd50a3b8a
parent651204c121254e5927e300eedf3251ad4bd9103b (diff)
fix(keys): Replace GUI with Application / Context Menu
This was a misrepresentation in the standardized keys that originated in earlier code.
-rw-r--r--app/include/dt-bindings/zmk/keys.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/include/dt-bindings/zmk/keys.h b/app/include/dt-bindings/zmk/keys.h
index cce3c24..8ce1145 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)