Skip to content

Commit 769fb5f

Browse files
authored
Make clippy happy on Windows (#5644)
1 parent 5c6b712 commit 769fb5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

helix-view/src/editor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,10 +296,10 @@ pub fn get_terminal_provider() -> Option<TerminalConfig> {
296296
});
297297
}
298298

299-
return Some(TerminalConfig {
299+
Some(TerminalConfig {
300300
command: "conhost".to_string(),
301301
args: vec!["cmd".to_string(), "/C".to_string()],
302-
});
302+
})
303303
}
304304

305305
#[cfg(not(any(windows, target_os = "wasm32")))]

0 commit comments

Comments
 (0)