chore: deprecates line numbers in search

Removes line numbers from search result output as part of the
refactoring effort.
This commit is contained in:
Chris Lane
2020-02-15 10:11:25 -05:00
parent e0c35a74d4
commit e24ac2b385
2 changed files with 2 additions and 3 deletions

View File

@ -78,7 +78,7 @@ func cmdSearch(opts map[string]interface{}, conf config.Config) {
if len(matches) > 0 {
fmt.Printf("%s:\n", sheet.Title)
for _, m := range matches {
fmt.Printf(" %d: %s\n", m.Line, m.Text)
fmt.Printf(" %s\n", m.Text)
}
fmt.Print("\n")
}