class Byebug::ShowCommand


Show byebug settings.

def self.description

def self.description
  <<-DESCRIPTION
    show <setting> <value>
    #{short_description}
    You can change them with the "set" command.
  DESCRIPTION
end

def self.help

def self.help
  super + Setting.help_all
end

def self.regexp

def self.regexp
  /^\s* show (?:\s+(?<setting>\w+))? \s*$/x
end

def self.short_description

def self.short_description
  "Shows byebug settings"
end

def execute

def execute
  key = @match[:setting]
  return puts(help) unless key
  setting = Setting.find(key)
  return errmsg(pr("show.errors.unknown_setting", key: key)) unless setting
  puts Setting.settings[setting.to_sym]
end