class Byebug::DisableCommand

def execute

def execute
  if not @match[1]
    errmsg "\"disable\" must be followed by \"display\", \"breakpoints\" " \
           "or breakpoint numbers.\n"
  else
    args = @match[1].split(/[ \t]+/)
    param = args.shift
    subcmd = find(Subcommands, param)
    if subcmd
      send("disable_#{subcmd.name}", args)
    else
      send('disable_breakpoints', args.unshift(param))
    end
  end
end