Skip to content

Commit

Permalink
chore(ferris/test): visually format keymap (qmk#21851)
Browse files Browse the repository at this point in the history
... and set all keys to printable characters (as described in the
keymap's readme)
  • Loading branch information
komidore64 authored and burkfers committed Sep 24, 2023
1 parent 18013e4 commit 46df61f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions keyboards/ferris/keymaps/test/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ void matrix_init_user(void) {
//debug_mouse=true;
}

// clang-format off
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_P0, DB_TOGG, KC_P2, KC_P3)
[0] = LAYOUT(
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
KC_1, KC_2, KC_3, KC_4
)
};

// clang-format on

0 comments on commit 46df61f

Please sign in to comment.