This commit is contained in:
Gokcehan 2020-12-19 17:56:27 +03:00
parent ed5104cfdb
commit 9e5d386304

9
ui.go
View File

@ -1119,14 +1119,13 @@ func listMatchesMenu(ui *ui, matches []string) error {
ncol := wtot / wcol
bytesWrote := 0
if n, err := b.WriteString("possible matches\n"); err != nil {
n, err := b.WriteString("possible matches\n")
if err != nil {
return err
} else {
bytesWrote += n
}
bytesWrote := n
for i := 0; i < len(matches); {
for j := 0; j < ncol && i < len(matches); i, j = i+1, j+1 {
target := matches[i]