Skip to content

Commit

Permalink
Swap tab and delete.
Browse files Browse the repository at this point in the history
Some advantages:
 * Delete on the left hand is nice for mousing.
 * Delete and Escape are "backwards" feeling keys, and are now on left.
 * Tab and Return are "forwards" feeling keys, and are now on the right.
  • Loading branch information
Michael Nye committed Jun 26, 2024
1 parent 52b9e3f commit 97b6429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions users/mnye/combos.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const uint16_t PROGMEM combo_xc[] = {KC_X, KC_C, COMBO_END};

combo_t key_combos[] = {
COMBO(combo_rs, KC_ESC),
COMBO(combo_st, KC_TAB),
COMBO(combo_ne, KC_BSPC),
COMBO(combo_st, KC_BSPC),
COMBO(combo_ne, KC_TAB),
COMBO(combo_ei, KC_ENT),
COMBO(combo_kh, KC_LEFT),
COMBO(combo_hcomma, KC_DOWN),
Expand Down

0 comments on commit 97b6429

Please sign in to comment.