diff options
author | exp80 | 2023-03-18 16:16:40 +0000 |
---|---|---|
committer | GitHub | 2023-03-18 16:16:40 +0000 |
commit | 770496511c67cf276f0b0a292e7a82fbd1b5f778 (patch) | |
tree | 08af197751683d3f333bab717b643f730a0abc17 /helix-term | |
parent | ac2a7731a6d04b8b913f49531058c7e2a843efd5 (diff) |
Fix highlighting in picker with multiple columns (#6333)
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/ui/picker.rs | 5 |
1 files changed, 4 insertions, 1 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; |