diff options
author | zer09 <zer09@users.noreply.github.com> | 2018-12-10 00:28:46 +0800 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-12-09 08:28:46 -0800 |
commit | 614b3a0f7ca266f9d625814a3bbd1c2de34f2f0f (patch) | |
tree | 75b135fb2fd6dd896caadc190090bd2e5e900f33 /users/zer09/tap_dance.c | |
parent | 11eaccdbce5246e7235ff91d0d04de83f7685919 (diff) | |
download | qmk_firmware-614b3a0f7ca266f9d625814a3bbd1c2de34f2f0f.tar.gz qmk_firmware-614b3a0f7ca266f9d625814a3bbd1c2de34f2f0f.zip |
Keymap: Keymap update (#4579)
* Add YREG keycode
* Add GM layer
* Set tapping term to 105
* update tapping term
Diffstat (limited to 'users/zer09/tap_dance.c')
-rw-r--r-- | users/zer09/tap_dance.c | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/users/zer09/tap_dance.c b/users/zer09/tap_dance.c index a23705ad8b..e99b26cca0 100644 --- a/users/zer09/tap_dance.c +++ b/users/zer09/tap_dance.c @@ -17,15 +17,27 @@ qk_tap_dance_action_t tap_dance_actions[] = { }; volatile uint8_t active_layer = _BL; +volatile uint8_t gm_layer_act = false; static tap upltap_state = {.state = 0}; static tap dwltap_state = {.state = 0}; static tap lsprtap_state = {.state = 0}; static tap ralttap_state = {.state = 0}; void layer_switcher_tap(uint8_t new_layer) { - layer_off(active_layer); - layer_on(new_layer); - active_layer = new_layer; + if (gm_layer_act == true) { + layer_off(active_layer); + if (new_layer == _BL) { + layer_on(_GM); + active_layer = _GM; + } else { + layer_on(new_layer); + active_layer = new_layer; + } + } else { + layer_off(active_layer); + layer_on(new_layer); + active_layer = new_layer; + } } int cur_dance(qk_tap_dance_state_t *state) { @@ -162,6 +174,14 @@ void dance_dwly_finished(qk_tap_dance_state_t *state, void *user_data) { case DOUBLE_HOLD: layer_switcher_tap(_AL); break; + case TRIPLE_TAP: + if (gm_layer_act == true) { + gm_layer_act = false; + layer_switcher_tap(_BL); + } else { + gm_layer_act = true; + layer_switcher_tap(_GM); + } default: layer_switcher_tap(_BL); break; @@ -174,6 +194,7 @@ void dance_dwly_reset(qk_tap_dance_state_t *state, void *user_data) { break; case SINGLE_HOLD: case DOUBLE_HOLD: + case TRIPLE_TAP: default: layer_switcher_tap(_BL); break; |