mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-07-06 19:55:34 -04:00
Reverting back to tap holds
- per documentation I felt the gains were not worth having to press shift to get those alt keycodes. - on symbol layer split side, there were alot of same finger bigrams
This commit is contained in:
parent
aace26eec5
commit
aaa2269240
5 changed files with 62 additions and 63 deletions
|
@ -13,29 +13,29 @@ bool process_tap_hold_key(keyrecord_t* record, uint16_t keycode);
|
|||
* and easier to maintain
|
||||
*/
|
||||
|
||||
//Brackets: open and close brackets and put the cursor inside
|
||||
// Brackets: open and close brackets and put the cursor inside
|
||||
#define TAPHOLD_LCBR KC_LCBR, KC_RCBR
|
||||
#define TAPHOLD_LABK KC_LABK, KC_RABK
|
||||
#define TAPHOLD_LBRC KC_LBRC, KC_RBRC
|
||||
#define TAPHOLD_LPRN KC_LPRN, KC_RPRN
|
||||
#define TAPHOLD_SQUO KC_QUOT, KC_QUOT
|
||||
|
||||
//double tap
|
||||
// double tap
|
||||
#define TAPHOLD_EQL KC_EQL, KC_EQL
|
||||
#define TAPHOLD_BSLS KC_BSLS, KC_BSLS
|
||||
#define TAPHOLD_SLSH KC_SLSH, KC_SLSH
|
||||
|
||||
//Custom: things like overriding default shifted key
|
||||
//#define TAPHOLD_COMM KC_COMM, KC_LPRN
|
||||
//#define TAPHOLD_DOT KC_DOT, KC_RPRN
|
||||
//#define TAPHOLD_PERC KC_PERC, KC_CIRC
|
||||
//#define TAPHOLD_EXLM KC_EXLM, KC_DLR
|
||||
//#define TAPHOLD_AT KC_AT, KC_AMPR
|
||||
// Custom override without holding shift
|
||||
#define TAPHOLD_COMM KC_COMM, KC_LPRN
|
||||
#define TAPHOLD_DOT KC_DOT, KC_RPRN
|
||||
#define TAPHOLD_PERC KC_PERC, KC_CIRC
|
||||
#define TAPHOLD_EXLM KC_EXLM, KC_DLR
|
||||
#define TAPHOLD_AT KC_AT, KC_AMPR
|
||||
|
||||
//auto shift
|
||||
//#define TAPHOLD_MINS KC_MINS, KC_UNDS
|
||||
//#define TAPHOLD_GRV KC_GRV, KC_TILD
|
||||
//#define TAPHOLD_SCLN KC_SCLN, KC_COLN
|
||||
//#define TAPHOLD_QUOT KC_QUOT, KC_DQUO
|
||||
// auto shift
|
||||
#define TAPHOLD_MINS KC_MINS, KC_UNDS
|
||||
#define TAPHOLD_GRV KC_GRV, KC_TILD
|
||||
#define TAPHOLD_SCLN KC_SCLN, KC_COLN
|
||||
#define TAPHOLD_QUOT KC_QUOT, KC_DQUO
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue