diff options
author | Jonathan LEI | 2023-01-23 13:51:34 +0000 |
---|---|---|
committer | GitHub | 2023-01-23 13:51:34 +0000 |
commit | 769fb5fe97ac321ba030ac8fbf7e3793700f282c (patch) | |
tree | 1adf028c23781487befc02eb9fa3e093c174a54f /helix-view | |
parent | 5c6b7127f88ef7508cefec74e2dc6479e1cfa609 (diff) |
Make clippy happy on Windows (#5644)
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/src/editor.rs | 4 |
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")))] |