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 ncol := wtot / wcol
bytesWrote := 0 n, err := b.WriteString("possible matches\n")
if err != nil {
if n, err := b.WriteString("possible matches\n"); err != nil {
return err return err
} else {
bytesWrote += n
} }
bytesWrote := n
for i := 0; i < len(matches); { for i := 0; i < len(matches); {
for j := 0; j < ncol && i < len(matches); i, j = i+1, j+1 { for j := 0; j < ncol && i < len(matches); i, j = i+1, j+1 {
target := matches[i] target := matches[i]