summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-10-24 02:45:15 +0900
committeraycabta <aycabta@gmail.com>2019-10-24 02:49:14 +0900
commit6df6611ce77d1bb7d50375a1399e1d5101a3a616 (patch)
tree246a4bbe3432577bc679f704b9517f0463d8652f /lib
parentf1d4216bd9b89835a8aa7b4e087549dc35279a7f (diff)
Treat only left alt key as meta-key on Windows
On German keyboard, right alt key acts as like shift key. Ex. right-alt-8 is just "[". This input doesn't have meta-key statement.
Diffstat (limited to 'lib')
-rw-r--r--lib/reline/windows.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/reline/windows.rb b/lib/reline/windows.rb
index f83813ab0b..3425c13477 100644
--- a/lib/reline/windows.rb
+++ b/lib/reline/windows.rb
@@ -62,6 +62,7 @@ class Reline::Windows
end
VK_MENU = 0x12
+ VK_LMENU = 0xA4
VK_CONTROL = 0x11
VK_SHIFT = 0x10
STD_INPUT_HANDLE = -10
@@ -124,7 +125,7 @@ class Reline::Windows
return @@output_buf.shift
end
input = getwch
- alt = (@@GetKeyState.call(VK_MENU) & 0x80) != 0
+ meta = (@@GetKeyState.call(VK_LMENU) & 0x80) != 0
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
@@ -149,7 +150,7 @@ class Reline::Windows
@@output_buf.push(input)
end
end
- if alt
+ if meta
"\e".ord
else
@@output_buf.shift