Skip to content

Commit

Permalink
save stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
hantianjz committed Aug 6, 2023
1 parent 0a5a67b commit 6645d52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions keyboards/lily58/keymaps/hjz/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ enum {
};

// Tap Dance definitions
qk_tap_dance_action_t tap_dance_actions[] = {
tap_dance_action_t tap_dance_actions[] = {
// Tap once for Escape, twice for Caps Lock
[TD_LD] = ACTION_TAP_DANCE_DOUBLE(KC_DOWN, KC_LEFT), // Down, Left
[TD_RU] = ACTION_TAP_DANCE_DOUBLE(KC_UP, KC_RGHT), // Up, Right
Expand Down Expand Up @@ -67,7 +67,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
LCTL_T(KC_TAB), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, _______,MO(_SYSTM),KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_QUOT,
KC_INS, KC_LALT,KC_LGUI, LT(_FUNC, KC_SPC), LT(_SHIFT, KC_SPC), KC_RSPC, TD(TD_LD), TD(TD_RU) \
KC_INS, KC_LALT,KC_LGUI, LT(_FUNC, KC_SPC), LT(_SHIFT, KC_SPC), SC_RSPC, TD(TD_LD), TD(TD_RU) \
),
/* FUNCTION
* ,-----------------------------------------. ,-----------------------------------------.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/lily58/lib/layer_state_reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const char *read_layer_state(void) {
} else if (layer_state == L_BASE) {
snprintf(layer_state_str, sizeof(layer_state_str), "BASE");
} else {
snprintf(layer_state_str, sizeof(layer_state_str), "Un:%ld", layer_state);
snprintf(layer_state_str, sizeof(layer_state_str), "Un:%d", layer_state);
}

return layer_state_str;
Expand Down

0 comments on commit 6645d52

Please sign in to comment.