Skip to content

Commit 8c468cc

Browse files
committed
✨ Recognize Eterm as unsupported
1 parent 0454cc4 commit 8c468cc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

crates/terminal-colorsaurus/src/quirks.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ fn terminal_quirk_from_env_eager() -> TerminalQuirks {
5454
// => since there's no way to know that we need to expect multiple responses
5555
// some of them are not consumed by us and end up on the user's screen :/
5656
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,
5759
Ok(_) => None,
5860
}
5961
}

0 commit comments

Comments
 (0)