Author: Pedro Lucas Porcellis <pedrolucasporcellis@gmail.com>
Improve the length of description and add a border between notes
commands/list.go | 3 ++-
diff --git a/commands/list.go b/commands/list.go index 5703de53753c56b8eae3d28f77961dda632f53ba..c45ffc29b49b861f8d34277ca8d5dcd4bc2d08cb 100644 --- a/commands/list.go +++ b/commands/list.go @@ -36,10 +36,11 @@ f, err := os.Open(note.Path) check(err) - b1 := make([]byte, 35) + b1 := make([]byte, 240) n1, err := f.Read(b1) check(err) fmt.Printf("%s\n\n", string(b1[:n1])) + fmt.Printf("------------------------------------\n\n") } return err