diff options
author | Dmitry Sharshakov | 2021-08-23 18:11:45 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-23 18:11:45 +0000 |
commit | 3a5e044c8958d6407516c194eeeb3b8961c00632 (patch) | |
tree | e6f0a66f857e7ccabb7661ab2352452199b234e2 /helix-term | |
parent | b3469df5bf79bae188d0e2d38aed182c5f47ff13 (diff) |
languages: support debug for Rust with LLDB
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/application.rs | 1 |
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 = |