mirror of https://github.com/helix-editor/helix
Make clippy happy on Windows (#5644)
parent
5c6b7127f8
commit
769fb5fe97
|
@ -296,10 +296,10 @@ pub fn get_terminal_provider() -> Option<TerminalConfig> {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return Some(TerminalConfig {
|
Some(TerminalConfig {
|
||||||
command: "conhost".to_string(),
|
command: "conhost".to_string(),
|
||||||
args: vec!["cmd".to_string(), "/C".to_string()],
|
args: vec!["cmd".to_string(), "/C".to_string()],
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(any(windows, target_os = "wasm32")))]
|
#[cfg(not(any(windows, target_os = "wasm32")))]
|
||||||
|
|
Loading…
Reference in New Issue