summaryrefslogtreecommitdiffstats
path: root/src/commands
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2021-02-13 11:41:20 -0500
committerJeff Zhao <jeff.no.zhao@gmail.com>2021-02-13 11:41:30 -0500
commit611b8ff4750d3a6d16b7b00d2df77043a012736c (patch)
tree56d5ae46455fb8ea751b886ba8b2531ba8b5380b /src/commands
parentdffc4577af54b37ca52b531c701b053813f8ba89 (diff)
change formatting
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/key_command.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/key_command.rs b/src/commands/key_command.rs
index a99af33..79ad1d9 100644
--- a/src/commands/key_command.rs
+++ b/src/commands/key_command.rs
@@ -371,9 +371,9 @@ impl JoshutoRunnable for KeyCommand {
impl std::fmt::Display for KeyCommand {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match &*self {
- Self::ChangeDirectory(p) => write!(f, "{} {:?}", self.command(), p),
+ Self::ChangeDirectory(p) => write!(f, "{} {:?}", self.command(), p),
Self::CommandLine(s, p) => write!(f, "{} {} {}", self.command(), s, p),
- Self::PasteFiles(options) => write!(f, "{} {}", self.command(), options),
+ Self::PasteFiles(options) => write!(f, "{} {}", self.command(), options),
Self::CursorMoveUp(i) => write!(f, "{} {}", self.command(), i),
Self::CursorMoveDown(i) => write!(f, "{} {}", self.command(), i),
Self::NewDirectory(d) => write!(f, "{} {:?}", self.command(), d),