fix shift-control-t
deduplicate the chordal functions
This commit is contained in:
parent
ec10618bb9
commit
4f4e8fcadc
4 changed files with 18 additions and 21 deletions
|
@ -5,13 +5,6 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
// layout helper macro, we just use 42 keys
|
||||
#undef LAYOUT
|
||||
#define LAYOUT(\
|
||||
|
|
|
@ -5,13 +5,6 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
// layout helper macro, we just use 42 keys
|
||||
#undef LAYOUT
|
||||
#define LAYOUT(\
|
||||
|
|
|
@ -5,13 +5,6 @@
|
|||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
char chordal_hold_handedness(keypos_t key)
|
||||
{
|
||||
// special handle thumb keys
|
||||
if (key.row == 3 || key.row == 7) return '*';
|
||||
return (key.row < MATRIX_ROWS / 2) ? 'L' : 'R';
|
||||
}
|
||||
|
||||
// layout helper macro, we just use 42 keys
|
||||
#undef LAYOUT
|
||||
#define LAYOUT(\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue