diff options
author | QMK Bot <hello@qmk.fm> | 2023-07-03 10:01:18 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2023-07-03 10:01:18 +0000 |
commit | 14a856fcafabb6e4cb2c846e10156eea316ac01a (patch) | |
tree | 6a3349c0ec1721fdce3eb957afb78b6ca090f67b | |
parent | 6921b7b1b71d0c8bc8e5a429e4b91619f9d67115 (diff) | |
parent | eeb5b4e8febfcebcbabe061f2b17567042094534 (diff) |
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r-- | keyboards/lily58/keymaps/gaston/config.h | 1 | ||||
-rw-r--r-- | keyboards/lily58/keymaps/gaston/keymap.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/keyboards/lily58/keymaps/gaston/config.h b/keyboards/lily58/keymaps/gaston/config.h index 988e3eb6f8..f4f3140d51 100644 --- a/keyboards/lily58/keymaps/gaston/config.h +++ b/keyboards/lily58/keymaps/gaston/config.h @@ -24,3 +24,4 @@ #define QUICK_TAP_TERM 0 #define TAPPING_TERM 150 /* ms */ +#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY diff --git a/keyboards/lily58/keymaps/gaston/keymap.c b/keyboards/lily58/keymaps/gaston/keymap.c index 4f8654b41b..c98ec4254b 100644 --- a/keyboards/lily58/keymaps/gaston/keymap.c +++ b/keyboards/lily58/keymaps/gaston/keymap.c @@ -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; + } +} |