Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
doonv committed Apr 26, 2024
1 parent 4e3a764 commit 2c16446
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ pub struct ConsoleConfig {
/// The key used to open the developer console.
pub open_key: KeyCode,
/// The key used to submit a command to the command parser.
pub submit_key: KeyCode
pub submit_key: KeyCode,
}

impl Default for ConsoleConfig {
fn default() -> Self {
Self {
theme: ConsoleTheme::ONE_DARK,
open_key: KeyCode::Backquote,
submit_key: KeyCode::Enter
submit_key: KeyCode::Enter,
}
}
}
Expand Down

0 comments on commit 2c16446

Please sign in to comment.