summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-10-24 00:12:52 +0900
committeraycabta <aycabta@gmail.com>2019-10-24 00:12:58 +0900
commit7bc787fa06e20f26fae875c9aac2675fc056e16d (patch)
tree208eb15728d4313220f1088083676192da9209b9 /lib
parent659f7c0aeb46b75fec913b33fc6daa39c2f6b611 (diff)
Support forced enter insertion by Ctrl+Enter on Windows
Diffstat (limited to 'lib')
-rw-r--r--lib/reline/windows.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/reline/windows.rb b/lib/reline/windows.rb
index 47cb612005..f83813ab0b 100644
--- a/lib/reline/windows.rb
+++ b/lib/reline/windows.rb
@@ -62,6 +62,7 @@ class Reline::Windows
end
VK_MENU = 0x12
+ VK_CONTROL = 0x11
VK_SHIFT = 0x10
STD_INPUT_HANDLE = -10
STD_OUTPUT_HANDLE = -11
@@ -124,8 +125,10 @@ class Reline::Windows
end
input = getwch
alt = (@@GetKeyState.call(VK_MENU) & 0x80) != 0
- shift_enter = !input.instance_of?(Array) && (@@GetKeyState.call(VK_SHIFT) & 0x80) != 0 && input == 0x0D
- if shift_enter
+ control = (@@GetKeyState.call(VK_CONTROL) & 0x80) != 0
+ shift = (@@GetKeyState.call(VK_SHIFT) & 0x80) != 0
+ force_enter = !input.instance_of?(Array) && (control or shift) && input == 0x0D
+ if force_enter
# It's treated as Meta+Enter on Windows
@@output_buf.push("\e".ord)
@@output_buf.push(input)