Add 'Enter' in keybind combinations.

This commit is contained in:
Nicolas Stepien 2012-09-18 18:15:14 +02:00
parent 790403df04
commit d063d89ed9
3 changed files with 5 additions and 0 deletions

View File

@ -1504,6 +1504,8 @@
switch (kc = e.keyCode) {
case 8:
return '';
case 13:
return 'Enter';
case 27:
return 'Esc';
case 37:

View File

@ -1,6 +1,7 @@
master
- Mayhem
Add support for 4chan Pass.
You can now use 'Enter' in keybind combinations.
2.35.0
- Mayhem

View File

@ -1183,6 +1183,8 @@ Keybinds =
key = switch kc = e.keyCode
when 8
''
when 13
'Enter'
when 27
'Esc'
when 37