Merge pull request #570 from cheat/v4.0.1

fix(search): fix pagination error
This commit is contained in:
Chris Allen Lane 2020-06-30 07:26:30 -04:00 committed by GitHub
commit 278a5d9154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -55,6 +55,7 @@ func cmdSearch(opts map[string]interface{}, conf config.Config) {
}
// sort the cheatsheets alphabetically, and search for matches
out := ""
for _, sheet := range sheets.Sort(consolidated) {
// assume that we want to perform a case-insensitive search for <phrase>
@ -88,14 +89,14 @@ func cmdSearch(opts map[string]interface{}, conf config.Config) {
}
// output the cheatsheet title
out := fmt.Sprintf("%s:\n", sheet.Title)
out += fmt.Sprintf("%s:\n", sheet.Title)
// indent each line of content with two spaces
for _, line := range strings.Split(sheet.Text, "\n") {
out += fmt.Sprintf(" %s\n", line)
}
// display the output
display.Display(out, conf)
}
// display the output
display.Display(out, conf)
}

View File

@ -17,7 +17,7 @@ import (
"github.com/cheat/cheat/internal/installer"
)
const version = "4.0.0"
const version = "4.0.1"
func main() {