From b827b41efea1a11ab245c7aac6c12a34501464d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Sun, 13 Sep 2020 20:06:53 +0900 Subject: [PATCH] Address clippy lint. --- helix-core/src/commands.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/helix-core/src/commands.rs b/helix-core/src/commands.rs index 914ca0fe1..2c420b6ec 100644 --- a/helix-core/src/commands.rs +++ b/helix-core/src/commands.rs @@ -80,9 +80,8 @@ pub fn prepend_to_line(state: &mut State, _count: usize) { let positions: Vec<_> = lines .into_iter() .map(|index| { - // adjust all positions to the end of the line. - let line_start = state.doc.line_to_char(index); - line_start + // adjust all positions to the start of the line. + state.doc.line_to_char(index) }) .collect();