Add separators in help -a with command name.
diff --git a/toys/other/help.c b/toys/other/help.c
index 4722528..f7d8481 100644
--- a/toys/other/help.c
+++ b/toys/other/help.c
@@ -68,6 +68,11 @@
 
   for (i = 0; i < toys.toycount; i++) {
     if (toys.optflags & FLAG_h) xprintf("<hr>\n<pre>\n");
+    else {
+      memset(toybuf, '-', 78);
+      memcpy(toybuf+3, toy_list[i].name, strlen(toy_list[i].name));
+      printf("%s\n\n", toybuf);
+    }
     do_help(toy_list+i);
     if (toys.optflags & FLAG_h) xprintf("</pre>\n");
   }