aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/application.rs8
1 files changed, 1 insertions, 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))
};