From b744cc1705c0b9d0410f48997d8f48ab88506996 Mon Sep 17 00:00:00 2001 From: Christopher Rice <37875168+Rwarcards762@users.noreply.github.com> Date: Wed, 19 Jan 2022 21:30:50 -0600 Subject: [PATCH 1/2] Update keymap to improve navcluster --- keymap.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/keymap.c b/keymap.c index 13968bd..cde6ff2 100644 --- a/keymap.c +++ b/keymap.c @@ -72,11 +72,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { ), /* RAISE * ,-----------------------------------------. ,-----------------------------------------. - * | | | | | | | | | | | | | | + * | | | | | | | | | | | | | DEL | * |------+------+------+------+------+------| |------+------+------+------+------+------| - * | ` | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | | + * | ` | 1 | 2 | 3 | 4 | 5 | | HOME | PGUP | Up | PGDN | END | INS | * |------+------+------+------+------+------| |------+------+------+------+------+------| - * | F1 | F2 | F3 | F4 | F5 | F6 |-------. ,-------| | Left | Down | Up |Right | | + * | F1 | F2 | F3 | F4 | F5 | F6 |-------. ,-------| | Left | Down | Right| | | * |------+------+------+------+------+------| [ | | ] |------+------+------+------+------+------| * | F7 | F8 | F9 | F10 | F11 | F12 |-------| |-------| + | - | = | [ | ] | \ | * `-----------------------------------------/ / \ \-----------------------------------------' @@ -86,9 +86,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { */ [_RAISE] = LAYOUT( \ - _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \ - KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, \ - KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, XXXXXXX, \ + _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \ + KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_HOME, KC_PGUP, KC_UP, KC_PGDN, KC_END, KC_INS, \ + KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, XXXXXXX, KC_LEFT, KC_DOWN, KC_RIGHT, XXXXXXX, XXXXXXX, \ KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, KC_PLUS, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \ _______, _______, _______, _______, _______, _______, _______, _______ \ ), @@ -291,4 +291,4 @@ void oled_task_user(void) { // Right side render_anim(); } -} \ No newline at end of file +} From 6d9daf2bb7a9117cd41bf0eda767bf79b2a36568 Mon Sep 17 00:00:00 2001 From: Christopher Rice <37875168+Rwarcards762@users.noreply.github.com> Date: Wed, 19 Jan 2022 21:32:19 -0600 Subject: [PATCH 2/2] Update README related to keymap change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8aeafc0..3af1236 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This SHOULD compile and run with no issues assuming: # What it does -This keymap uses the Lily58's default layout. You could change this in `keymap.c` towards the top if desired. +`keymap.c` in a previous commit used the original layout -- utilize that if desired. The latest in `master` uses a personalized version, improving the nav cluster (imo.) This keymap adds text to the left OLED to show your current estimated WPM, as well as what layer you are on.