Add quote and minus combos
This commit is contained in:
parent
de3242089e
commit
4eb1100cbd
@ -15,6 +15,7 @@ enum _layers {
|
||||
};
|
||||
|
||||
// Changes from regular layout
|
||||
// - Added many combos
|
||||
// - Capslock => Map as Hyper and escape
|
||||
// - FN+Escape => Sleep
|
||||
// - Remove fn lock layers
|
||||
@ -27,7 +28,9 @@ const uint16_t PROGMEM backspace_combo[] = {KC_S, KC_D, COMBO_END};
|
||||
const uint16_t PROGMEM tab_combo[] = {KC_D, KC_F, COMBO_END};
|
||||
const uint16_t PROGMEM enter_combo[] = {KC_C, KC_V, COMBO_END};
|
||||
const uint16_t PROGMEM colon_combo[] = {KC_J, KC_K, COMBO_END};
|
||||
const uint16_t PROGMEM quote_combo[] = {KC_N, KC_M, COMBO_END};
|
||||
const uint16_t PROGMEM underscore_combo[] = {KC_M, KC_COMM, COMBO_END};
|
||||
const uint16_t PROGMEM minus_combo[] = {KC_I, KC_O, COMBO_END};
|
||||
const uint16_t PROGMEM greaterthan_combo[] = {KC_K, KC_L, COMBO_END};
|
||||
const uint16_t PROGMEM lessthan_combo[] = {KC_H, KC_J, COMBO_END};
|
||||
combo_t key_combos[] = {
|
||||
@ -36,7 +39,9 @@ combo_t key_combos[] = {
|
||||
COMBO(tab_combo, KC_TAB),
|
||||
COMBO(enter_combo, KC_ENT),
|
||||
COMBO(colon_combo, KC_COLON),
|
||||
COMBO(quote_combo, KC_QUOT),
|
||||
COMBO(underscore_combo, KC_UNDS),
|
||||
COMBO(minus_combo, KC_MINUS),
|
||||
COMBO(greaterthan_combo, KC_GT),
|
||||
COMBO(lessthan_combo, KC_LT),
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user