1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
package reader
import (
"github.com/rivo/uniseg"
"github.com/walles/moor/v2/internal/linemetadata"
"github.com/walles/moor/v2/internal/search"
"github.com/walles/moor/v2/internal/textstyles"
"github.com/walles/moor/v2/twin"
)
type NumberedLine struct {
Index linemetadata.Index
Number linemetadata.Number
Line *Line
}
func (nl *NumberedLine) Plain() string {
return nl.Line.Plain(nl.Index)
}
// maxTokensCount: at most this many tokens will be included in the result. If
// 0, do all runes. For BenchmarkRenderHugeLine() performance.
func (nl *NumberedLine) HighlightedTokens(plainTextStyle twin.Style, searchHitStyle twin.Style, search search.Search, maxTokensCount int) textstyles.StyledRunesWithTrailer {
return nl.Line.HighlightedTokens(plainTextStyle, searchHitStyle, search, nl.Index, maxTokensCount)
}
func (nl *NumberedLine) DisplayWidth() int {
width := 0
for _, r := range nl.Plain() {
width += uniseg.StringWidth(string(r))
}
return width
}
|