Remove legacy sendstring keycodes (#18749)
This commit is contained in:
parent
c57330d340
commit
bad8c5992b
73 changed files with 581 additions and 557 deletions
|
@ -33,13 +33,13 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
switch (keycode) {
|
||||
case TMUX_WN: // Switches to next window in tmux
|
||||
if (record->event.pressed) {
|
||||
SEND_STRING(SS_LCTRL("a") "n"); // Requires a leader of ctrl-a
|
||||
SEND_STRING(SS_LCTL("a") "n"); // Requires a leader of ctrl-a
|
||||
}
|
||||
break;
|
||||
|
||||
case TMUX_WL: // Switches to last window in tmux
|
||||
if (record->event.pressed) {
|
||||
SEND_STRING(SS_LCTRL("a") "l");
|
||||
SEND_STRING(SS_LCTL("a") "l");
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue