diff options
-rw-r--r-- | helix-term/src/ui/picker.rs | 5 | ||||
-rw-r--r-- | helix-tui/src/text.rs | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index bc2f98ee..3294a2a1 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -812,7 +812,10 @@ impl<T: Item + 'static> Component for Picker<T> { for cell in row.cells.iter_mut() { let spans = match cell.content.lines.get(0) { Some(s) => s, - None => continue, + None => { + cell_start_byte_offset += TEMP_CELL_SEP.len(); + continue; + } }; let mut cell_len = 0; diff --git a/helix-tui/src/text.rs b/helix-tui/src/text.rs index a3e242fe..076766dd 100644 --- a/helix-tui/src/text.rs +++ b/helix-tui/src/text.rs @@ -453,10 +453,12 @@ impl<'a> From<&Text<'a>> for String { let mut output = String::with_capacity(size); for spans in &text.lines { + if !output.is_empty() { + output.push('\n'); + } for span in &spans.0 { output.push_str(&span.content); } - output.push('\n'); } output } |