mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-01 13:25:45 +02:00
Mirror of https://github.com/eclipse-cdt/cdt
![]() When TM Terminal sees this: ESC [ 5 n It replies indicating that the terminal is OK: ESC [ 0 n This escape sequence is documented here: 8.3.35 DSR - DEVICE STATUS REPORT. Page 40. http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-048.pdf Motivation: I'd like to switch winpty from using DSR(6) to DSR(5) as its ESC flushing command. When winpty sees a bare ESC, it can either synthesize a VK_ESCAPE keypress or wait to see if the ESC was part of some other escape sequence. It tries to deal with this by generating a DSR(6), which should flush out the remaining bytes of the sequence, if there are any. DSR(6) is suboptimal, though, because the reply collides with the sequence some terminals use for F3 with a modifier: ESC [ nn ; nn R DSR(5) generates a DSR(0) reply, which does not have the same problem. DSR(5) is supported by all the terminal emulators I tested, including xterm, rxvt, rxvt-unicode, gnome-terminal, konsole, putty, mintty, OS X's Terminal.app, and IntelliJ/jediterm. Signed-off-by: Ryan Prichard <ryan.prichard@gmail.com> |
||
---|---|---|
admin | ||
features | ||
plugins | ||
repos/org.eclipse.tm.terminal.repo | ||
.gitignore | ||
CONTRIBUTING | ||
pom.xml | ||
readme.txt | ||
terminals.psf |
This repository holds the TM Terminal Component. Its core depends on Eclipse RCP only. All these Git modules should be named "org.eclipse.tm.terminal.*". See http://www.eclipse.org/tm/