class Byebug::ThreadCommand::CurrentCommand


Information about the current thread

def self.description

def self.description
  <<-DESCRIPTION
    th[read] c[urrent]
    #{short_description}
  DESCRIPTION
end

def self.regexp

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

def self.short_description

def self.short_description
  "Shows current thread information"
end

def execute

def execute
  display_context(context)
end