# File lib/interact/rewindable.rb, line 75
  def handler(which, state)
    prompts = state.options[:prompts] || []

    case which
    when :up
      if back = prompts.pop
        raise JumpToPrompt, back
      end
    end

    super
  end