1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/reline] Support Enter key of numpad on Windows

The yamatanooroti gem can't emulate numpad key pressing...

8e9da1aeaf
This commit is contained in:
aycabta 2021-07-18 22:10:48 +09:00
parent 03f8c27179
commit 750359ce81

View file

@ -206,6 +206,8 @@ class Reline::Windows
@@output_buf.push(0, 80)
when VK_DELETE
@@output_buf.push(0, 83)
when VK_RETURN
@@output_buf.push(char_code) # must be 0x0D
end
elsif char_code == 0 and control_key_state != 0
# unknown