aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/clueboard/66_hotswap/gen1/config.h5
-rw-r--r--keyboards/dozen0/config.h5
-rw-r--r--keyboards/georgi/config.h4
3 files changed, 2 insertions, 12 deletions
diff --git a/keyboards/clueboard/66_hotswap/gen1/config.h b/keyboards/clueboard/66_hotswap/gen1/config.h
index 6b0cfb60b..795adecd5 100644
--- a/keyboards/clueboard/66_hotswap/gen1/config.h
+++ b/keyboards/clueboard/66_hotswap/gen1/config.h
@@ -80,11 +80,6 @@
80 */ 80 */
81//#define FORCE_NKRO 81//#define FORCE_NKRO
82 82
83/* key combination for magic key command */
84#define IS_COMMAND() ( \
85 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
86)
87
88/* 83/*
89 * Feature disable options 84 * Feature disable options
90 * These options are also useful to firmware size reduction. 85 * These options are also useful to firmware size reduction.
diff --git a/keyboards/dozen0/config.h b/keyboards/dozen0/config.h
index 3c409350d..6b0f8525a 100644
--- a/keyboards/dozen0/config.h
+++ b/keyboards/dozen0/config.h
@@ -112,11 +112,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
112 * 112 *
113 */ 113 */
114 114
115/* key combination for magic key command */
116/*#define IS_COMMAND() ( \
117 keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
118)*/
119
120/* control how magic key switches layers */ 115/* control how magic key switches layers */
121//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true 116//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
122//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true 117//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
diff --git a/keyboards/georgi/config.h b/keyboards/georgi/config.h
index 041567719..b35762fbc 100644
--- a/keyboards/georgi/config.h
+++ b/keyboards/georgi/config.h
@@ -66,8 +66,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
66 66
67/* key combination for command */ 67/* key combination for command */
68#define IS_COMMAND() ( \ 68#define IS_COMMAND() ( \
69 keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \ 69 get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
70 keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \ 70 get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
71) 71)
72 72
73#define DEBOUNCE 5 73#define DEBOUNCE 5