This commit is contained in:
John Kerl 2021-02-03 20:26:30 -05:00
parent 9b1f62dbf2
commit d5c0f063cf

View file

@ -262,6 +262,17 @@ func usageHelp(this *Repl) {
fmt.Println("TODO: metahelp is TBD.")
}
// PLAN:
// * :help
// * :help dsl functions
// * :help dsl function x
// * :help dsl keywords
// * :help dsl keywords x
// * :help repl
// * :help repl commands
// * :help repl intro
// * :help repl :foo
func handleHelp(this *Repl, args []string) bool {
args = args[1:] // strip off verb
if len(args) == 0 {