aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helix-view/src/editor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs
index 9af8e4c3..eef4a3f9 100644
--- a/helix-view/src/editor.rs
+++ b/helix-view/src/editor.rs
@@ -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")))]