class Byebug::ThreadCurrentCommand

:nodoc:

def execute

def execute
  display_context(@state.context)
end

def help(cmd)

def help(cmd)
  %{
    th[read] [cur[rent]]\t\tshow current thread
  }
end

def help_command

def help_command
  'thread'
end

def regexp

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