mirror of
https://github.com/qmk/qmk_userspace.git
synced 2026-07-26 19:31:55 -04:00
한글 입력 시 쌍자음 입력 오류나는 것 관련 chordal hold 세부 조정정
This commit is contained in:
parent
9115619c6f
commit
d11a24a3dd
2 changed files with 5 additions and 4 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#define CHARYBDIS_CONFIG_SYNC
|
||||
#define POINTING_DEVICE_AUTO_MOUSE_ENABLE
|
||||
#define AUTO_MOUSE_DEFAULT_LAYER 10
|
||||
#define AUTO_MOUSE_TIME 300
|
||||
#define AUTO_MOUSE_TIME 400
|
||||
// #define AUTO_MOUSE_DELAY TAPPING_TERM
|
||||
#define CHARYBDIS_DRAGSCROLL_REVERSE_Y
|
||||
|
|
|
|||
|
|
@ -132,10 +132,11 @@ layer_state_t layer_state_set_user(layer_state_t state) {
|
|||
|
||||
static bool mouse_layer_on = false;
|
||||
bool now_on = layer_state_cmp(state, _ONEHAND);
|
||||
if (now_on && !mouse_layer_on) {
|
||||
//if (now_on && !mouse_layer_on) {
|
||||
// 마우스 레이어 진입 시
|
||||
tap_code(KC_LCTL); // 예: 음소거 키 입력
|
||||
} else if (!now_on && mouse_layer_on) {
|
||||
// tap_code(KC_LCTL); // 예: 음소거 키 입력
|
||||
//} else
|
||||
if (!now_on && mouse_layer_on) {
|
||||
// 마우스 레이어 탈출 시
|
||||
tap_code(KC_LCTL); // 예: 볼륨업 키 입력
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue