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 e0e1a6e commit 0f380efCopy full SHA for 0f380ef
src/cargo/core/shell.rs
@@ -596,8 +596,9 @@ fn supports_term_integration(stream: &dyn IsTerminal) -> bool {
596
let windows_terminal = std::env::var("WT_SESSION").is_ok();
597
let conemu = std::env::var("ConEmuANSI").ok() == Some("ON".into());
598
let wezterm = std::env::var("TERM_PROGRAM").ok() == Some("WezTerm".into());
599
+ let ghostty = std::env::var("TERM_PROGRAM").ok() == Some("ghostty".into());
600
- (windows_terminal || conemu || wezterm) && stream.is_terminal()
601
+ (windows_terminal || conemu || wezterm || ghostty) && stream.is_terminal()
602
}
603
604
pub struct Hyperlink<D: fmt::Display> {
0 commit comments