From 03b2d81406d342460604102948305dd96c0826c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Sun, 29 Aug 2021 23:03:27 +0900 Subject: [PATCH] dap: better yet, use Selection::single.. --- helix-term/src/application.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 193ea505..e4d48f3d 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -350,13 +350,7 @@ impl Application { let end = dap_pos_to_pos(doc.text(), end_line, end_column.unwrap_or(0)) .unwrap_or(0); - Selection::new( - helix_core::smallvec![Range::new( - start.min(text_end), - end.min(text_end), - )], - 0, - ) + Selection::single(start.min(text_end), end.min(text_end)) } else { Selection::point(start.min(text_end)) };