Remove legacy sendstring keycodes (#18749)
This commit is contained in:
parent
c57330d340
commit
bad8c5992b
73 changed files with 581 additions and 557 deletions
|
@ -502,10 +502,10 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
/*
|
||||
* Obsoleted by making tmux understand Ctrl-(Shift)-Tab natively.
|
||||
case TM_NEXT:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("a") "n");
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("a") "n");
|
||||
break;
|
||||
case TM_PREV:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("a") "p");
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("a") "p");
|
||||
break;
|
||||
*/
|
||||
// TODO: use key overrides to turn, e.g. Win+Ctrl-Tab into VIM_NEXT.
|
||||
|
@ -517,16 +517,16 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
if (record->event.pressed) SEND_STRING(SS_TAP(X_ESC) SS_TAP(X_G) SS_LSFT("t"));
|
||||
break;
|
||||
case WIN_LEFT:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("w") SS_TAP(X_H));
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("w") SS_TAP(X_H));
|
||||
break;
|
||||
case WIN_DN:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("w") SS_TAP(X_J));
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("w") SS_TAP(X_J));
|
||||
break;
|
||||
case WIN_UP:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("w") SS_TAP(X_K));
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("w") SS_TAP(X_K));
|
||||
break;
|
||||
case WIN_RGHT:
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTRL("w") SS_TAP(X_L));
|
||||
if (record->event.pressed) SEND_STRING(SS_LCTL("w") SS_TAP(X_L));
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue