Address clippy lint.

This commit is contained in:
Blaž Hrastnik 2021-05-17 23:01:45 +09:00
parent 8f6f329057
commit 2100f5a2c0

View File

@ -85,7 +85,10 @@ pub fn switch(&mut self, id: DocumentId, action: Action) {
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);