class Byebug::History

def last_ids(number)


Array of ids of the last +number+ commands.
def last_ids(number)
  (1 + size - number..size).to_a
end