diff options
Diffstat (limited to 'src/parse/mod.rs')
| -rw-r--r-- | src/parse/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 8970fc3..5059311 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -924,6 +924,10 @@ impl Parse for ExpString { while !delim.try_end(b) { if !b.has() { if b.is_completion() { + b.highlights.push(Highlight { + span: begin.to(b.loc_u32()), + kind: HighlightKind::Other(OtherHighlights::String), + }); break 'outer; } else { return Err(ParseError::Eof); |
