class Byebug::DisableCommand

def help(args)

def help(args)
  if args[1]
    subcmd = find(Subcommands, args[1])
    return "Invalid \"disable\" subcommand \"#{args[1]}\"." unless subcmd
    str = subcmd.short_help + '.'
    str += '\n' + subcmd.long_help if subcmd.long_help
    return str
  end
  DisableCommand.description + format_subcmds(Subcommads)
end