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 @@ pub async fn handle_debugger_message(&mut self, payload: helix_dap::Payload) { 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)