summaryrefslogtreecommitdiffstats
path: root/src/minibuffer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/minibuffer.rs')
-rw-r--r--src/minibuffer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuffer.rs b/src/minibuffer.rs
index ac5c819..6cc0081 100644
--- a/src/minibuffer.rs
+++ b/src/minibuffer.rs
@@ -57,7 +57,7 @@ impl History {
let hpath = crate::paths::history_path()?;
let history = self.history.iter().map(|(htype, hlines)| {
- hlines.iter().map(|hline| format!("{}: {}\n", htype, hline))
+ hlines.iter().map(|hline| format!("{}:{}\n", htype, hline))
.collect::<String>()
}).collect::<String>();