Open GoogleCodeExporter opened 9 years ago
Patches welcome.
Original comment by beewoo...@gmail.com
on 31 Mar 2012 at 11:29
The keycodes for F13-F24 are below. They need to be added to the block
starting at line 2676 in vt100.js:
else if (event.shiftKey && !event.ctrlKey &&
!event.altKey && !event.metaKey) {
switch (key) {
However, the logic following these blocks, staring around line 2765:
if (event.shiftKey || event.ctrlKey || event.altKey || event.metaKey)
causes issues with these keycodes - it mangles them. Looking at the code I'm
not really sure why its there or what it's doing, so maybe someone can
enlighten me? Commenting it out seemed to have to noticeable effect on the
limited tests I did. I attached a diff for the first change, adding the
keycodes. However, due to my unfamiliarity with the project as a whole, I'm
not sure if removing the second block of code will cause any problems. To me
it seems redundant and unneeded, but maybe I'm missing something?
Original comment by phobo...@gmail.com
on 20 Jun 2012 at 5:10
Attachments:
Original issue reported on code.google.com by
mrw...@gmail.com
on 8 Mar 2012 at 9:36