class Byebug::ThreadCurrentCommand

def description

def description
  %{th[read] [cur[rent]]\t\tshow current thread}
end

def execute

def execute
  display_context(@state.context)
end

def names

def names
  %w(thread)
end

def regexp

def regexp
  /^\s* th(?:read)? \s+ (?:cur(?:rent)?)? \s*$/x
end