Update "info" command help msg to include regs

This commit is contained in:
Derek Parker 2015-06-19 14:34:27 -05:00
parent 256c83b17b
commit cc5e5c780c

@ -57,7 +57,7 @@ func DebugCommands(client service.Client) *Commands {
{aliases: []string{"goroutines"}, cmdFn: goroutines, helpMsg: "Print out info for every goroutine."}, {aliases: []string{"goroutines"}, cmdFn: goroutines, helpMsg: "Print out info for every goroutine."},
{aliases: []string{"breakpoints", "bp"}, cmdFn: breakpoints, helpMsg: "Print out info for active breakpoints."}, {aliases: []string{"breakpoints", "bp"}, cmdFn: breakpoints, helpMsg: "Print out info for active breakpoints."},
{aliases: []string{"print", "p"}, cmdFn: printVar, helpMsg: "Evaluate a variable."}, {aliases: []string{"print", "p"}, cmdFn: printVar, helpMsg: "Evaluate a variable."},
{aliases: []string{"info"}, cmdFn: info, helpMsg: "Provides info about args, funcs, locals, sources, or vars."}, {aliases: []string{"info"}, cmdFn: info, helpMsg: "Subcommands: args, funcs, locals, sources, vars, or regs."},
{aliases: []string{"exit"}, cmdFn: nullCommand, helpMsg: "Exit the debugger."}, {aliases: []string{"exit"}, cmdFn: nullCommand, helpMsg: "Exit the debugger."},
} }