We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0454cc4 commit 8c468ccCopy full SHA for 8c468cc
crates/terminal-colorsaurus/src/quirks.rs
@@ -54,6 +54,8 @@ fn terminal_quirk_from_env_eager() -> TerminalQuirks {
54
// => since there's no way to know that we need to expect multiple responses
55
// some of them are not consumed by us and end up on the user's screen :/
56
Ok(term) if term == "screen" || term.starts_with("screen.") => Unsupported,
57
+ // Eterm doesn't even support `DA1`, so we list it here to avoid running into the timeout.
58
+ Ok(term) if term == "Eterm" => Unsupported,
59
Ok(_) => None,
60
}
61
0 commit comments