Skip to content

Commit

Permalink
Make clippy happy on Windows (#5644)
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI authored Jan 23, 2023
1 parent 5c6b712 commit 769fb5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")))]
Expand Down

0 comments on commit 769fb5f

Please sign in to comment.