Skip to content

Commit

Permalink
return with q to its original position and move h to the thumb
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelromao committed Jun 12, 2024
1 parent 8ddefd8 commit 3b8bcdb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/qmk/users/rafaelromao/definitions/keycodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ enum {
#define NAV_F12 LT(_NAVIGATION, KC_F12)
#define NAV_AT LT(_NAVIGATION, KC_AT)
#define NAV_STI LT(_NAVIGATION, MC_STIN) // Tap behavior is implemented in intercepted code
#define NAV_Q LT(_NAVIGATION, KC_Q)
#define NAV_H LT(_NAVIGATION, KC_H)
#define NAV_REP LT(_NAVIGATION, REPEAT)
#define FNA_REP LT(_FIXED_NAV, REPEAT)

Expand Down
4 changes: 2 additions & 2 deletions src/qmk/users/rafaelromao/definitions/keymap_blocks.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
#define ___________________NOMOD_R3__________ KC_J , KC_H , KC_COMM , KC_DOT
#define ____NOMOD_R4_____ OSL_A2 , OS_LSFT

#define ___________________ALPHA2_L1_________ XXXXXXX , KC_H , MC_QU , KC_K
#define ___________________ALPHA2_L1_________ XXXXXXX , KC_Q , MC_QU , KC_K
#define ___________________ALPHA2_L2___________________ KC_Y , KC_Z , KC_X , KC_W , XXXXXXX
#define _________ALPHA2_L3___________________ KC_J , MC_SQ_C , KC_V , XXXXXXX
#define ____ALPHA2_L4____ NAV_Q , OS_SYM
#define ____ALPHA2_L4____ NAV_H , OS_SYM

#define _________ALPHA2_R1___________________ MC_CR_O , MC_CR_E , MC_CR_A , XXXXXXX
#define ___________________ALPHA2_R2___________________ XXXXXXX , MC_TL_A , MC_SQ_E , MC_SQ_A , MC_SQ_I
Expand Down
4 changes: 2 additions & 2 deletions src/qmk/users/rafaelromao/features/taphold.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
case LOW_SPC:
case RAI_SPC:
case RAI_A2:
case NAV_Q:
case NAV_H:
case NAV_REP:
case FNA_REP:
case MED_CAS:
Expand All @@ -23,7 +23,7 @@ uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) {
case LOW_SPC:
case RAI_SPC:
case RAI_A2:
case NAV_Q:
case NAV_H:
case NAV_REP:
case FNA_REP:
case MED_CAS:
Expand Down

0 comments on commit 3b8bcdb

Please sign in to comment.