From 2c1644675c3458338eca205a7c4d4635c1b2e784 Mon Sep 17 00:00:00 2001 From: Doonv <58695417+doonv@users.noreply.github.com> Date: Fri, 26 Apr 2024 19:23:26 +0300 Subject: [PATCH] `cargo fmt` --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index c8f8773..4a60b7a 100644 --- a/src/config.rs +++ b/src/config.rs @@ -12,7 +12,7 @@ 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 { @@ -20,7 +20,7 @@ impl Default for ConsoleConfig { Self { theme: ConsoleTheme::ONE_DARK, open_key: KeyCode::Backquote, - submit_key: KeyCode::Enter + submit_key: KeyCode::Enter, } } }