diff --git a/src/libstd/term.rs b/src/libstd/term.rs index 124e73b75d7e..49966e9be602 100644 --- a/src/libstd/term.rs +++ b/src/libstd/term.rs @@ -63,7 +63,7 @@ Function: color_supported Returns true if the terminal supports color */ fn color_supported() -> bool { - let supported_terms = ["xterm-color", "xterm", "screen-bce"]; + let supported_terms = ["xterm-color", "xterm", "screen-bce", "xterm-256color"]; ret alt generic_os::getenv("TERM") { option::some(env) { for term: str in supported_terms {