mirror of https://github.com/adamdruppe/arsd.git
fix issue on a specific cmder mosh setup
This commit is contained in:
parent
0dacbf15b8
commit
a4b8490de6
25
terminal.d
25
terminal.d
|
@ -852,11 +852,11 @@ struct Terminal {
|
||||||
// almost always
|
// almost always
|
||||||
if(t.indexOf("xterm") != -1)
|
if(t.indexOf("xterm") != -1)
|
||||||
t = "xterm";
|
t = "xterm";
|
||||||
if(t.indexOf("putty") != -1)
|
else if(t.indexOf("putty") != -1)
|
||||||
t = "xterm";
|
t = "xterm";
|
||||||
if(t.indexOf("tmux") != -1)
|
else if(t.indexOf("tmux") != -1)
|
||||||
t = "tmux";
|
t = "tmux";
|
||||||
if(t.indexOf("screen") != -1)
|
else if(t.indexOf("screen") != -1)
|
||||||
t = "screen";
|
t = "screen";
|
||||||
|
|
||||||
termcapData = getTermcapDatabase(t);
|
termcapData = getTermcapDatabase(t);
|
||||||
|
@ -4157,25 +4157,8 @@ struct RealTimeConsoleInput {
|
||||||
}
|
}
|
||||||
// escape sequence
|
// escape sequence
|
||||||
c = nextRaw();
|
c = nextRaw();
|
||||||
if(c == '[') { // CSI, ends on anything >= 'A'
|
if(c == '[' || c == 'O') { // CSI, ends on anything >= 'A'
|
||||||
return doEscapeSequence(readEscapeSequence(sequenceBuffer));
|
return doEscapeSequence(readEscapeSequence(sequenceBuffer));
|
||||||
} else if(c == 'O') {
|
|
||||||
// could be xterm function key
|
|
||||||
auto n = nextRaw();
|
|
||||||
|
|
||||||
char[3] thing;
|
|
||||||
thing[0] = '\033';
|
|
||||||
thing[1] = 'O';
|
|
||||||
thing[2] = cast(char) n;
|
|
||||||
|
|
||||||
auto cap = terminal.findSequenceInTermcap(thing);
|
|
||||||
if(cap is null) {
|
|
||||||
return keyPressAndRelease(NonCharacterKeyEvent.Key.escape) ~
|
|
||||||
charPressAndRelease('O') ~
|
|
||||||
charPressAndRelease(thing[2]);
|
|
||||||
} else {
|
|
||||||
return translateTermcapName(cap);
|
|
||||||
}
|
|
||||||
} else if(c == '\033') {
|
} else if(c == '\033') {
|
||||||
// could be escape followed by an escape sequence!
|
// could be escape followed by an escape sequence!
|
||||||
return keyPressAndRelease(NonCharacterKeyEvent.Key.escape) ~ readNextEventsHelper(c);
|
return keyPressAndRelease(NonCharacterKeyEvent.Key.escape) ~ readNextEventsHelper(c);
|
||||||
|
|
Loading…
Reference in New Issue