Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/src/ui/markdown.rs')
| -rw-r--r-- | helix-term/src/ui/markdown.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/ui/markdown.rs b/helix-term/src/ui/markdown.rs index 6bef59d1..323c9d40 100644 --- a/helix-term/src/ui/markdown.rs +++ b/helix-term/src/ui/markdown.rs @@ -306,7 +306,7 @@ impl Markdown { &self.config_loader.load(), None, ); - lines.extend(tui_text.lines.into_iter()); + lines.extend(tui_text.lines); } else { let style = match tags.last() { Some(Tag::Heading { level, .. }) => match level { |