Skip to content

Commit

Permalink
add back single arrow combo
Browse files Browse the repository at this point in the history
  • Loading branch information
patcoll committed Mar 20, 2024
1 parent a408dd9 commit c4a9108
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions users/patcoll/combos.def
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ COMB(dg_combo, KC_UNDS, KC_D, KC_G)
COMB(dfio_combo, EX_PIPE, KC_D, KC_F, KC_I, KC_O)
COMB(asdfiodot_combo, EX_DARR, CTL_A, KC_S, KC_D, KC_F, KC_I, KC_O)
COMB(sdfio_combo, EX_ARR, KC_S, KC_D, KC_F, KC_I, KC_O)
COMB(sdfui_combo, EX_BARR, KC_S, KC_D, KC_F, KC_U, KC_I)
COMB(dfi_combo, EX_INSP, KC_D, KC_F, KC_I)
COMB(dfo_combo, EX_PAR, KC_D, KC_F, KC_O)
COMB(dfp_combo, EX_SEAR, KC_D, KC_F, KC_P)
Expand Down
3 changes: 3 additions & 0 deletions users/patcoll/keyrecords/process_records.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case EX_PIPE:
SEND_STRING("|>");
break;
case EX_BARR:
SEND_STRING("<-");
break;
case EX_ARR:
SEND_STRING("->");
break;
Expand Down
1 change: 1 addition & 0 deletions users/patcoll/patcoll.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ enum userspace_custom_keycodes {
WIN_MAX,

EX_PIPE,
EX_BARR,
EX_ARR,
EX_DARR,
EX_PAR,
Expand Down

0 comments on commit c4a9108

Please sign in to comment.