Skip to content

Commit

Permalink
Merge pull request #56 from Plonk42/backspace_code
Browse files Browse the repository at this point in the history
Backspace send ^? instead of ^H
  • Loading branch information
traff committed Sep 13, 2013
2 parents d78f82a + 55c2278 commit b32bb95
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src-terminal/com/jediterm/terminal/TerminalKeyEncoder.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public TerminalKeyEncoder() {
setAutoNewLine(false);
arrowKeysApplicationSequences();
keypadApplicationSequences();
putCode(VK_BACK_SPACE, Ascii.DEL);
putCode(VK_F1, ESC, 'O', 'P');
putCode(VK_F2, ESC, 'O', 'Q');
putCode(VK_F3, ESC, 'O', 'R');
Expand Down

0 comments on commit b32bb95

Please sign in to comment.