diff options
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c')
-rw-r--r-- | keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c b/keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c index 79f07d3bb..5036bcb3f 100644 --- a/keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c +++ b/keyboards/bpiphany/pegasushoof/keymaps/citadel/keymap.c | |||
@@ -17,11 +17,15 @@ | |||
17 | #include QMK_KEYBOARD_H | 17 | #include QMK_KEYBOARD_H |
18 | 18 | ||
19 | /* Allow shortcuts for combos like RALT(KC_RBRC) that don't take up more than 7 characters: */ | 19 | /* Allow shortcuts for combos like RALT(KC_RBRC) that don't take up more than 7 characters: */ |
20 | #define G(kc) RALT(KC_##kc) | 20 | /* Original shortcuts (quantum_keycodes.h) take full-sized keycodes: too long! */ |
21 | #define A(kc) LALT(KC_##kc) | 21 | #undef C |
22 | #undef S | ||
23 | #undef A | ||
24 | #undef G | ||
22 | #define C(kc) LCTL(KC_##kc) | 25 | #define C(kc) LCTL(KC_##kc) |
23 | #undef S /* Original shortcut (quantum_keycodes.h) takes full-sized keycodes: too long! */ | ||
24 | #define S(kc) LSFT(KC_##kc) | 26 | #define S(kc) LSFT(KC_##kc) |
27 | #define A(kc) LALT(KC_##kc) | ||
28 | #define G(kc) RALT(KC_##kc) | ||
25 | #define CTALDEL LCTL(LALT(KC_DEL)) | 29 | #define CTALDEL LCTL(LALT(KC_DEL)) |
26 | 30 | ||
27 | enum layers { | 31 | enum layers { |