1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-06-03 08:26:10 +02:00

Make clippy happy on Windows (#5644)

This commit is contained in:
Jonathan LEI 2023-01-23 21:51:34 +08:00 committed by GitHub
parent 5c6b7127f8
commit 769fb5fe97
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -296,10 +296,10 @@ pub fn get_terminal_provider() -> Option<TerminalConfig> {
});
}
return Some(TerminalConfig {
Some(TerminalConfig {
command: "conhost".to_string(),
args: vec!["cmd".to_string(), "/C".to_string()],
});
})
}
#[cfg(not(any(windows, target_os = "wasm32")))]