Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/keymap-manager.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ class KeymapManager
# 229, which is the "composition key code". This API is deprecated, but this
# is the most simple and reliable way we found to ignore keystrokes that are
# part of IME compositions.
if event.keyCode is 229
if event.keyCode is 229 and event.key isnt 'Dead'
return

# keystroke is the atom keybind syntax, e.g. 'ctrl-a'
Expand Down