File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,8 @@ func listAllEntries() error {
390
390
391
391
if err == nil {
392
392
if len (entries ) > 0 {
393
- fmt .Println ("=====================================================================" )
393
+ fmt .Printf ("%s" , getColor (strings .ToLower (settings .Color )))
394
+ printDelim (settings .Delim , settings .Color )
394
395
for _ , entry := range entries {
395
396
printEntry (& entry , false )
396
397
}
@@ -430,7 +431,9 @@ func findCurrentEntry(term string) error {
430
431
if len (entries ) == 1 {
431
432
delim = true
432
433
} else {
433
- fmt .Println ("=====================================================================" )
434
+ _ , settings := getOrCreateLocalConfig (APP )
435
+ fmt .Printf ("%s" , getColor (strings .ToLower (settings .Color )))
436
+ printDelim (settings .Delim , settings .Color )
434
437
}
435
438
436
439
for _ , entry := range entries {
You can’t perform that action at this time.
0 commit comments