We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95d1731 commit 6522bdcCopy full SHA for 6522bdc
cmd/util.go
@@ -41,9 +41,9 @@ func renderResults(results []notebook.Result) {
41
switch vertex := val.Properties["Value"].(type) {
42
case parser.Note:
43
if len(result.Context) > 0 {
44
- fmt.Printf("%s:%d - %s\n", vertex.File, result.Line, result.Context)
+ fmt.Printf("%s:%d: - %s\n", vertex.File, result.Line, result.Context)
45
} else {
46
- fmt.Printf("%s - %s\n", vertex.File, vertex.Title)
+ fmt.Printf("%s:%d: - %s\n", vertex.File, vertex.Start, vertex.Title)
47
}
48
case string:
49
fmt.Printf("%s\n", vertex)
0 commit comments