From 5badf0ee6104e6fa5f57699aa914fc9ed8b5c5ad Mon Sep 17 00:00:00 2001 From: Jackson Schuster Date: Sat, 4 Mar 2023 10:22:01 -0800 Subject: [PATCH] fmt --- src/interface.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface.rs b/src/interface.rs index 4d4f3e3d..f93818b1 100644 --- a/src/interface.rs +++ b/src/interface.rs @@ -185,7 +185,7 @@ impl<'a> Interface<'a> { cursor::MoveTo(1, prompt_line_index), SetForegroundColor(fg), Clear(ClearType::CurrentLine), - Print(format!("{} {}",self.settings.prompt, self.input)), + Print(format!("{} {}", self.settings.prompt, self.input)), cursor::MoveTo(self.input.cursor as u16 + 3, prompt_line_index), cursor::Show ) @@ -793,7 +793,7 @@ impl<'a> Interface<'a> { code: Char('j'), .. } => { - self.run = ! self.settings.disable_run_command; + self.run = !self.settings.disable_run_command; self.accept_selection(); return true; }