Remove unused field

This commit is contained in:
Junegunn Choi 2024-06-07 17:05:33 +09:00
parent 368294edf6
commit 590060a16b
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -160,7 +160,6 @@ type itemLine struct {
result Result
empty bool
other bool
minIndex int32
}
func (t *Terminal) markEmptyLine(line int) {
@ -1980,7 +1979,7 @@ func (t *Terminal) printItem(result Result, line int, maxLine int, index int, cu
// Avoid unnecessary redraw
newLine := itemLine{firstLine: line, cy: index + t.offset, current: current, selected: selected, label: label,
result: result, queryLen: len(t.input), width: 0, hasBar: line >= barRange[0] && line < barRange[1], minIndex: t.merger.minIndex}
result: result, queryLen: len(t.input), width: 0, hasBar: line >= barRange[0] && line < barRange[1]}
prevLine := t.prevLines[line]
forceRedraw := prevLine.other || prevLine.firstLine != newLine.firstLine
printBar := func(lineNum int, forceRedraw bool) bool {