Skip to content

Commit f82e1a4

Browse files
committed
Update vb-adaptive.c
1 parent 8dcf8d8 commit f82e1a4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

handsdown/vb-adaptive.c

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,17 @@ bool process_adaptive_key(uint16_t keycode, const keyrecord_t *record) {
172172
}
173173
break;
174174
#else
175-
case KC_N: // N becomes H (for H-Digraph rolls)
175+
case KC_N: // not many things can roll into N
176176
switch (prior_keycode) {
177177
case KC_T: // "TION" is 58x more common than "TN"
178178
send_string("ion");
179179
return_state = false; // done.
180+
break;
181+
// case KC_C: // cn = ln (CN 5x more common)
182+
case KC_X: // xn = ln (LN 101x more common)
183+
tap_code(KC_BSPC);
184+
tap_code(KC_L);
185+
return_state = true; // let the N happen.
180186
}
181187
break;
182188
#endif

0 commit comments

Comments
 (0)