chore: enable safe clippy pedantic lints

This commit is contained in:
Christian Visintin
2026-04-19 01:54:46 +05:30
parent f044e6ace2
commit e11af03fdd
17 changed files with 50 additions and 36 deletions
+1 -1
View File
@@ -469,7 +469,7 @@ fn handle_input_ev(
}
Event::Keyboard(KeyEvent {
// NOTE: escaped control sequence
code: Key::Char('h') | Key::Char('r') | Key::Char('s'),
code: Key::Char('h' | 'r' | 's'),
modifiers: KeyModifiers::CONTROL,
}) => Some(Msg::None),
Event::Keyboard(KeyEvent {