Skip to content

Commit

Permalink
[Keymap] Update brauner preonic layout (#20439)
Browse files Browse the repository at this point in the history
  • Loading branch information
brauner authored Apr 16, 2023
1 parent 6a0a594 commit 1e3d2f2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions keyboards/preonic/keymaps/brauner/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#define MUSIC_MASK (keycode != KC_NO)

#define PERMISSVE_HOLD
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY

#define LEADER_PER_KEY_TIMING

Expand Down
12 changes: 12 additions & 0 deletions keyboards/preonic/keymaps/brauner/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,18 @@ static inline bool toggle_layer(enum preonic_layers layer, keyrecord_t *record)
return false;
}

bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case MOD_TAP_LSFT_ENT:
case MOD_TAP_LSFT_ESC:
/* Immediately select the hold action when another key is pressed. */
return true;
default:
/* Do not select the hold action when another key is pressed. */
return false;
}
}

bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case QWERTY:
Expand Down

0 comments on commit 1e3d2f2

Please sign in to comment.