aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-23 18:11:45 +0000
committerDmitry Sharshakov2021-08-23 18:11:45 +0000
commit3a5e044c8958d6407516c194eeeb3b8961c00632 (patch)
treee6f0a66f857e7ccabb7661ab2352452199b234e2 /helix-term/src/application.rs
parentb3469df5bf79bae188d0e2d38aed182c5f47ff13 (diff)
languages: support debug for Rust with LLDB
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r--helix-term/src/application.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index 1bb2df39..82bba076 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -324,6 +324,7 @@ impl Application {
.unwrap();
let (view, doc) = current!(self.editor);
+ log::info!("{:?}", doc);
let start = doc.text().line_to_char(line - 1) + column;
if let Some(end_line) = end_line {
let end =