fix: 한글 IME 활성 시 키보드 단축키 미작동 문제 수정#538
Merged
Merged
Conversation
Linux IME(ibus/fcitx)에서 한글 입력 시 keydown의 event.code가 비정상(빈 문자열, keyCode=229)이 되는 문제를 keyup 이벤트로 전환하여 해결. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2 tasks
sdk-kr
pushed a commit
that referenced
this pull request
Mar 13, 2026
## Summary - #538 에서 Linux IME 문제 해결을 위해 `keydown` → `keyup`으로 전환했으나 부작용 발생 - `Ctrl+W`로 탭을 닫을 때 `keyup` 이벤트가 남은 다른 탭에서 발생하여 단축키가 오작동 - Linux IME 문제도 완전히 해결되지 않음 - `keydown` 이벤트로 복원 ## Test plan - [ ] `Ctrl+W`로 탭 닫은 후 다른 탭에서 단축키 오작동 없는지 확인 - [ ] 단축키(F, R, H 등) 정상 동작 확인 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
keydown→keyup이벤트로 전환하여 IME가event.code를 가로채는 문제 회피keyup전환에 따른 부작용 없음Test plan
🤖 Generated with Claude Code