aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/application.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index f9789d79..72f3a125 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -325,7 +325,7 @@ impl Application {
let (view, doc) = current!(self.editor);
- let text_end = doc.text().len_chars() - 1;
+ let text_end = doc.text().len_chars().saturating_sub(1);
let start = doc.text().try_line_to_char(line - 1).unwrap_or(0) + column;
if let Some(end_line) = end_line {
let end = doc.text().try_line_to_char(end_line - 1).unwrap_or(0)