From cc4b71274a9fbffe4081243b19f2234ed6492fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Sun, 4 Sep 2022 17:27:15 +0900 Subject: [PATCH] minor: Simplify another document_mut statement --- helix-term/src/application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 9e79e7c96..1461c6883 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -195,7 +195,7 @@ impl Application { // `--vsplit` or `--hsplit` are used, the file which is // opened last is focused on. let view_id = editor.tree.focus; - let doc = editor.document_mut(doc_id).unwrap(); + let doc = doc_mut!(editor, &doc_id); let pos = Selection::point(pos_at_coords(doc.text().slice(..), pos, true)); doc.set_selection(view_id, pos); }