diff options
| author | Rossman360 <53881724+Rossman360@users.noreply.github.com> | 2020-05-16 03:17:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-16 00:17:02 -0700 |
| commit | bbd17def21cbf6df94305da4dd3d3fe51414a94e (patch) | |
| tree | 0615d65d39393c77dccec3d31400c5b34a869772 /users | |
| parent | d89e552419822c565805bd95b992b8e7dfdf47d9 (diff) | |
| download | qmk_firmware-bbd17def21cbf6df94305da4dd3d3fe51414a94e.tar.gz qmk_firmware-bbd17def21cbf6df94305da4dd3d3fe51414a94e.zip | |
[Keyboard] Rebound rev3 (#9101)
* more stoof
* readme update
* reverting keymap
* re-adding userspace
* new userspace needed
* no want 0 under thumb
* gettin fancier with my knob
* macro fix
* had pins for oled ver
* wait, these are the right pins
* reduntant line
* image fix
* get highest layer every day
* whoops
* correct rev name in json
* a few good catches
* what I had planned
Diffstat (limited to 'users')
| -rw-r--r-- | users/rossman360/rossman360.c | 5 | ||||
| -rw-r--r-- | users/rossman360/rossman360.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/users/rossman360/rossman360.c b/users/rossman360/rossman360.c index a1c4ad8f9..dc7d76639 100644 --- a/users/rossman360/rossman360.c +++ b/users/rossman360/rossman360.c | |||
| @@ -75,6 +75,11 @@ switch (keycode) { | |||
| 75 | SEND_STRING(SS_TAP(X_LEFT) SS_TAP(X_LEFT) SS_LCTRL(SS_TAP(X_LEFT)) SS_TAP(X_DELETE)); | 75 | SEND_STRING(SS_TAP(X_LEFT) SS_TAP(X_LEFT) SS_LCTRL(SS_TAP(X_LEFT)) SS_TAP(X_DELETE)); |
| 76 | } | 76 | } |
| 77 | break; | 77 | break; |
| 78 | case EMDASH: | ||
| 79 | if (record->event.pressed) { | ||
| 80 | SEND_STRING(SS_LCTRL(SS_LSFT(SS_TAP(X_U))) SS_TAP(X_2) SS_TAP(X_0) SS_TAP(X_1) SS_TAP(X_4) SS_TAP(X_SPACE) SS_TAP(X_SPACE)); | ||
| 81 | } | ||
| 82 | break; | ||
| 78 | }; | 83 | }; |
| 79 | return true; | 84 | return true; |
| 80 | }; | 85 | }; |
diff --git a/users/rossman360/rossman360.h b/users/rossman360/rossman360.h index 57f6234fa..994916b54 100644 --- a/users/rossman360/rossman360.h +++ b/users/rossman360/rossman360.h | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #define CTRLSP MT(MOD_LCTL, KC_SPACE) | 19 | #define CTRLSP MT(MOD_LCTL, KC_SPACE) |
| 20 | #define RVOLU LCTL(KC_RBRC) | 20 | #define RVOLU LCTL(KC_RBRC) |
| 21 | #define RVOLD LCTL(KC_LBRC) | 21 | #define RVOLD LCTL(KC_LBRC) |
| 22 | #define QUIT LCTL(KC_Q) | ||
| 22 | 23 | ||
| 23 | // Define all of | 24 | // Define all of |
| 24 | enum custom_keycodes { | 25 | enum custom_keycodes { |
| @@ -32,4 +33,5 @@ enum custom_keycodes { | |||
| 32 | WREFRESH, | 33 | WREFRESH, |
| 33 | PMERGE, | 34 | PMERGE, |
| 34 | REMCAPS, | 35 | REMCAPS, |
| 36 | EMDASH | ||
| 35 | }; | 37 | }; |
