Fix larger multiline region highlighting

This commit is contained in:
Zachary Yedidia 2017-03-16 16:38:44 -04:00
parent f637268fa7
commit 2a4abbee24

View File

@ -73,6 +73,10 @@ func FindAllIndex(regex *regexp.Regexp, str []byte, canMatchStart, canMatchEnd b
func (h *Highlighter) highlightRegion(start int, canMatchEnd bool, lineNum int, line []byte, region *Region) LineMatch {
highlights := make(LineMatch)
if start == 0 {
highlights[0] = region.group
}
loc := FindIndex(region.end, line, start == 0, canMatchEnd)
if loc != nil {
if region.parent == nil {