summaryrefslogtreecommitdiff
path: root/module/scripts/help.scm
Commit message (Collapse)AuthorAgeFilesLines
* scripts: help: Fix reference to the "Using Guile Tools" node.Maxim Cournoyer2017-11-221-1/+1
| | | | | | | | | Fixes <https://bugs.gnu.org/28835>. * module/scripts/help.scm (list-commands): Fix reference to the "Using Guile Tools" node. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* better guild help FOOAndy Wingo2011-08-191-21/+61
| | | | | | | * module/scripts/help.scm (show-help, show-summary, show-usage): Grovel for %synopsis and %help variables as well, and show them appropriately. Export these routines for other script modules to use. Needs documentation.
* Change `guild --help' and `--version' output to be more GNUish.Ludovic Courtès2011-07-231-6/+8
| | | | | | | | * meta/guild.in (display-version): Display the version, not the effective version. * module/scripts/help.scm (list-commands)[help]: Add proper footer, as per the GCS.
* Export `main' from (scripts help).Ludovic Courtès2011-07-231-1/+2
| | | | * module/scripts/help.scm: Export `main'.
* add support for guild help FOOAndy Wingo2011-07-231-17/+53
| | | | * module/scripts/help.scm (main): Add support for guild help FOO.
* add (scripts help)Andy Wingo2011-07-231-0/+109
* meta/guild.in (display-version): Use (ice-9 command-line)'s version-etc. (main): Dispatch --help to guild help. * module/scripts/help.scm: New file, a copy of list.scm, but with a better name. * module/Makefile.am: Add help.scm to the list. * module/scripts/list.scm: Change to be an alias to "help". (list-scripts): Restore this API.