class Byebug::DisableCommand::DisplaySubcommand


Enables all or specific displays

def description

def description
  <<-EOD
    dis[able] d[isplay][ <id1> <id2> .. <idn>]
    #{short_description}
    Arguments are the code numbers of the expressions to disable. Do "info
    display" to see the current list of code numbers. If no arguments are
    specified, all displays are disabled.
  EOD
end

def execute

def execute
  enable_disable_display('disable', @match[1])
end

def regexp

def regexp
  /^\s* d(?:isplay)? (?:\s+ (.+))? \s*$/x
end

def short_description

def short_description
  'Disables expressions to be displayed when program stops.'
end