Lints
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 3m5s
Cargo CI / Lint (pull_request) Successful in 1m13s

This commit is contained in:
Wojciech Kozlowski 2024-02-15 20:52:06 +01:00
parent b34cc9c662
commit 5979e75dcd
4 changed files with 13 additions and 16 deletions

View File

@ -228,17 +228,13 @@ impl ArtistSelection {
// https://wiki.musicbrainz.org/User:Yurim/Punctuation_and_Special_Characters. // https://wiki.musicbrainz.org/User:Yurim/Punctuation_and_Special_Characters.
if asciify { if asciify {
normalized normalized
.replace("", "-") // U+2010 hyphen // U+2010 hyphen, U+2012 figure dash, U+2013 en dash, U+2014 em dash,
.replace("", "-") // U+2012 figure dash // U+2015 horizontal bar
.replace("", "-") // U+2013 en dash .replace(['', '', '', '—', '―'], "-")
.replace("", "-") // U+2014 em dash .replace(['', ''], "'") // U+2018, U+2019
.replace("", "-") // U+2015 horizontal bar .replace(['“', '”'], "\"") // U+201C, U+201D
.replace("", "'") // U+2018 .replace('…', "...") // U+2026
.replace("", "'") // U+2019 .replace('', "-") // U+2212 minus sign
.replace("", "\"") // U+201C
.replace("", "\"") // U+201D
.replace("", "...") // U+2026
.replace("", "-") // U+2212 minus sign
} else { } else {
normalized normalized
} }

View File

@ -150,10 +150,10 @@ impl<APP: IAppInteract> IEventHandlerPrivate<APP> for EventHandler {
match key_event.code { match key_event.code {
KeyCode::Char('s') | KeyCode::Char('S') => { KeyCode::Char('s') | KeyCode::Char('S') => {
app.search_next(); app.search_next();
}, }
KeyCode::Char('g') | KeyCode::Char('G') => { KeyCode::Char('g') | KeyCode::Char('G') => {
app.cancel_search(); app.cancel_search();
}, }
_ => {} _ => {}
} }
return; return;

View File

@ -378,8 +378,9 @@ impl Minibuffer<'_> {
AppState::Search(ref s) => Minibuffer { AppState::Search(ref s) => Minibuffer {
paragraphs: vec![ paragraphs: vec![
Paragraph::new(format!("I-search: {s}")), Paragraph::new(format!("I-search: {s}")),
Paragraph::new(format!("ctrl+s: search next")).alignment(Alignment::Center), Paragraph::new("ctrl+s: search next".to_string()).alignment(Alignment::Center),
Paragraph::new(format!("ctrl+g: cancel search")).alignment(Alignment::Center), Paragraph::new("ctrl+g: cancel search".to_string())
.alignment(Alignment::Center),
], ],
columns, columns,
}, },