class Byebug::ThreadCommand::CurrentSubcommand


Information about the current thread

def description

def description
  <<-EOD
    th[read] c[urrent]
    #{short_description}
  EOD
end

def execute

def execute
  display_context(@state.context)
end

def regexp

def regexp
  /^\s* c(?:urrent)? \s*$/x
end

def short_description

def short_description
  'Shows current thread information'
end