mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-07-06 03:40:35 -04:00
I think it was my combos that made NAV weird
- CONFIG is now shift and space held together - had to rearrange the dynamic macros to make it work - put back nav 0 and the tapping term mod
This commit is contained in:
parent
56fb8076f8
commit
6344f4eec6
3 changed files with 8 additions and 5 deletions
|
@ -40,7 +40,7 @@ const uint16_t PROGMEM key_ent_combo[] = { KC_X, KC_C, COMBO_END };
|
|||
const uint16_t PROGMEM key_tab_combo[] = { KC_U, KC_I, COMBO_END };
|
||||
const uint16_t PROGMEM key_bspc_combo[] = { KC_M, TR_COMM, COMBO_END };
|
||||
const uint16_t PROGMEM key_del_combo[] = { TR_COMM, TR_DOT, COMBO_END };
|
||||
const uint16_t PROGMEM lyr_cfg_combo[] = { KC_SPC, NAV, COMBO_END };
|
||||
const uint16_t PROGMEM lyr_cfg_combo[] = { TR_LSFT, KC_SPC, COMBO_END };
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -20,6 +20,9 @@ uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) {
|
|||
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
|
||||
case NAV_0:
|
||||
return TAPPING_TERM - 80;
|
||||
|
||||
default:
|
||||
//uprintf("tapping term: %d \n", TAPPING_TERM);
|
||||
return TAPPING_TERM;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue