aboutsummaryrefslogtreecommitdiff
path: root/keyboards/butterstick/keymaps
diff options
context:
space:
mode:
authorJeremy Bernhardt <bernhardtjeremy@gmail.com>2019-08-06 11:20:48 -0600
committerDrashna Jaelre <drashna@live.com>2019-08-06 10:20:48 -0700
commit07bdc8f4b7268f69a789bfe7656e8384bfcfed57 (patch)
tree50110933438d9fc4b928f9d6e225f8a8e397af8f /keyboards/butterstick/keymaps
parentae934c389e755ae780eb6e385f55b687581c5db4 (diff)
downloadqmk_firmware-07bdc8f4b7268f69a789bfe7656e8384bfcfed57.tar.gz
qmk_firmware-07bdc8f4b7268f69a789bfe7656e8384bfcfed57.zip
[Keyboard] Added little fixes and bootmagic for gBoard keebs (#6477)
* Added little fixes and bootmagic * Update keyboards/gergo/keymaps/oled/rules.mk Co-Authored-By: Drashna Jaelre <drashna@live.com> * whacked out quantum_libs
Diffstat (limited to 'keyboards/butterstick/keymaps')
-rw-r--r--keyboards/butterstick/keymaps/default/keymap.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/keyboards/butterstick/keymaps/default/keymap.c b/keyboards/butterstick/keymaps/default/keymap.c
index e4d1ea91f..749e9ba07 100644
--- a/keyboards/butterstick/keymaps/default/keymap.c
+++ b/keyboards/butterstick/keymaps/default/keymap.c
@@ -45,21 +45,21 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
45uint32_t processQwerty(bool lookup) { 45uint32_t processQwerty(bool lookup) {
46 // SECRET AGENT CHORDS 46 // SECRET AGENT CHORDS
47 P( LSU | LK | RS | RD, SEND_STRING(VERSION); SEND_STRING(__DATE__)); 47 P( LSU | LK | RS | RD, SEND_STRING(VERSION); SEND_STRING(__DATE__));
48 P( LR | ST2| RR | RB, SEND(KC_BSPC)); 48 P( LR | ST2| RR | RB, SEND(KC_BSPC));
49 P( LSD | RZ, SEND(KC_SPC)); 49 P( LSD | RZ, SEND(KC_SPC));
50 50
51 // Dual chords 51 // Dual chords
52 P( LP | LH, CLICK_MOUSE(KC_MS_BTN2)); 52 P( LP | LH, CLICK_MOUSE(KC_MS_BTN2));
53 P( ST1 | RF, CLICK_MOUSE(KC_MS_BTN1)); 53 P( ST1 | RF, CLICK_MOUSE(KC_MS_BTN1));
54 P( LSU | LFT, SEND(KC_ESC)); 54 P( LSU | LFT, SEND(KC_ESC));
55 P( LSD | LK, SEND(KC_LSFT)); 55 P( LSD | LK, SEND(KC_LSFT));
56 P( RZ | RS, SEND(KC_LSFT)); 56 P( RZ | RS, SEND(KC_LSFT));
57 P( ST2 | RR, SEND(KC_SPC)); 57 P( ST2 | RR, SEND(KC_SPC));
58 P( RP | RL, SEND(KC_LGUI)); 58 P( RP | RL, SEND(KC_LGUI));
59 P( RT | RD, SEND(KC_LCTL)); 59 P( RT | RD, SEND(KC_LCTL));
60 P( RL | RT, SEND(KC_LALT)); 60 P( RL | RT, SEND(KC_LALT));
61 P( LSU | LSD | LFT | LK, SEND(KC_LCTL)); 61 P( LSU | LSD | LFT | LK, SEND(KC_LCTL));
62 P( RS | RT | RD | RZ, SEND(KC_ENT)); 62 P( RS | RT | RD | RZ, SEND(KC_ENT));
63 63
64 // Function Layer 64 // Function Layer
65 P( FUNCT | RF, SEND(KC_F1)); 65 P( FUNCT | RF, SEND(KC_F1));
@@ -179,6 +179,5 @@ uint32_t processQwerty(bool lookup) {
179 return 0; 179 return 0;
180} 180}
181 181
182
183// Don't fuck with this, thanks. 182// Don't fuck with this, thanks.
184size_t keymapsCount = sizeof(keymaps)/sizeof(keymaps[0]); 183size_t keymapsCount = sizeof(keymaps)/sizeof(keymaps[0]);