~ruther/qmk_firmware

14a856fcafabb6e4cb2c846e10156eea316ac01a — QMK Bot 1 year, 11 months ago 6921b7b + eeb5b4e
Merge remote-tracking branch 'origin/master' into develop
2 files changed, 12 insertions(+), 0 deletions(-)

M keyboards/lily58/keymaps/gaston/config.h
M keyboards/lily58/keymaps/gaston/keymap.c
M keyboards/lily58/keymaps/gaston/config.h => keyboards/lily58/keymaps/gaston/config.h +1 -0
@@ 24,3 24,4 @@

#define QUICK_TAP_TERM 0
#define TAPPING_TERM 150 /* ms */
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY

M keyboards/lily58/keymaps/gaston/keymap.c => keyboards/lily58/keymaps/gaston/keymap.c +11 -0
@@ 57,3 57,14 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)

};

bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {
    switch (keycode) {
        case MT_CESC:
            // 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;
    }
}

Do not follow this link