Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jtschuster committed Mar 4, 2023
1 parent 1892ab8 commit 5badf0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit 5badf0e

Please sign in to comment.