You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so from my understanding that would be solved by changing 627 to if currentTag < len(colorTagIndices) && colorTagIndices[currentTag][1]-colorTagIndices[currentTag][0] > 2 {
There is a guard to only check if the current tag
currentTag
has a index incolorTagIndices
:tview/textview.go
Line 623 in 711ef39
when it hits the end tag it increments the
currentTag
tview/textview.go
Line 625 in 711ef39
and then produces a panic in the next line because the new tag is not bound checked against
colorTagIndices
tview/textview.go
Line 627 in 711ef39
The text was updated successfully, but these errors were encountered: