clippy lints
This commit is contained in:
parent
798dbd27c5
commit
c4792efead
3 changed files with 3 additions and 2 deletions
|
@ -133,6 +133,7 @@ pub struct Selection {
|
|||
primary_index: usize,
|
||||
}
|
||||
|
||||
#[allow(clippy::len_without_is_empty)] // a Selection is never empty
|
||||
impl Selection {
|
||||
// eq
|
||||
|
||||
|
|
|
@ -46,8 +46,8 @@ impl Application {
|
|||
compositor.push(Box::new(ui::EditorView::new()));
|
||||
|
||||
let mut app = Self {
|
||||
editor,
|
||||
compositor,
|
||||
editor,
|
||||
|
||||
executor,
|
||||
};
|
||||
|
|
|
@ -139,7 +139,7 @@ impl Default for Theme {
|
|||
|
||||
let scopes = mapping.keys().map(ToString::to_string).collect();
|
||||
|
||||
Self { mapping, scopes }
|
||||
Self { scopes, mapping }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue