Address clippy lint.
This commit is contained in:
parent
8f6f329057
commit
2100f5a2c0
1 changed files with 4 additions and 1 deletions
|
@ -85,7 +85,10 @@ impl Editor {
|
|||
let (view, doc) = self.current();
|
||||
|
||||
// initialize selection for view
|
||||
let selection = doc.selections.entry(view.id).or_insert(Selection::point(0));
|
||||
let selection = doc
|
||||
.selections
|
||||
.entry(view.id)
|
||||
.or_insert_with(|| Selection::point(0));
|
||||
// TODO: reuse align_view
|
||||
let pos = selection.cursor();
|
||||
let line = doc.text().char_to_line(pos);
|
||||
|
|
Loading…
Add table
Reference in a new issue