summaryrefslogtreecommitdiffstats
path: root/src/command/search.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/search.rs')
-rw-r--r--src/command/search.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/command/search.rs b/src/command/search.rs
index 2dcdecc8..d3807bca 100644
--- a/src/command/search.rs
+++ b/src/command/search.rs
@@ -103,10 +103,7 @@ impl State {
None => Span::raw(" "),
Some(diff) => {
if 0 < diff && diff < 10 {
- Span::styled(
- format!(" {} ", diff),
- Style::default().fg(Color::DarkGray),
- )
+ Span::raw(format!(" {} ", diff))
} else {
Span::raw(" ")
}
@@ -275,7 +272,7 @@ fn draw<T: Backend>(f: &mut Frame<'_, T>, history_count: i64, app: &mut State) {
.split(top_chunks[1]);
let title = Paragraph::new(Text::from(Span::styled(
- format!("A'tuin v{}", VERSION),
+ format!("Atuin v{}", VERSION),
Style::default().add_modifier(Modifier::BOLD),
)));