Ignoring unknown regions when highlighting. Fixes #939

pull/942/head
Oliver 5 months ago
parent bf8f1c43e4
commit d3aebefdd2

@ -590,7 +590,7 @@ func (t *TextView) clear() {
// may also provide nil to turn off all highlights). // may also provide nil to turn off all highlights).
// //
// For more information on regions, see class description. Empty region strings // For more information on regions, see class description. Empty region strings
// are ignored. // or regions not contained in the text are ignored.
// //
// Text in highlighted regions will be drawn inverted, i.e. with their // Text in highlighted regions will be drawn inverted, i.e. with their
// background and foreground colors swapped. // background and foreground colors swapped.
@ -611,6 +611,15 @@ func (t *TextView) Highlight(regionIDs ...string) *TextView {
return true return true
}) })
// Remove unknown regions.
newRegions := make([]string, 0, len(regionIDs))
for _, regionID := range regionIDs {
if _, ok := t.regions[regionID]; ok {
newRegions = append(newRegions, regionID)
}
}
regionIDs = newRegions
// Toggle highlights. // Toggle highlights.
if t.toggleHighlights { if t.toggleHighlights {
var newIDs []string var newIDs []string
@ -1038,6 +1047,16 @@ func (t *TextView) Draw(screen tcell.Screen) {
// Scroll to highlighted regions. // Scroll to highlighted regions.
if t.regionTags && t.scrollToHighlights { if t.regionTags && t.scrollToHighlights {
// Make sure we know all highlighted regions.
t.parseAhead(width, func(lineNumber int, line *textViewLine) bool {
for regionID := range t.highlights {
if _, ok := t.regions[regionID]; !ok {
return false
}
}
return true
})
// What is the line range for all highlighted regions? // What is the line range for all highlighted regions?
var ( var (
firstRegion string firstRegion string

Loading…
Cancel
Save