class Pry::Pager::NullPager

comes in. Used when ‘Pry.config.pager` is false.
`NullPager` is a “pager” that actually just prints all output as it

def close; end

def close; end

def height

def height
  @height ||= @out.height
end

def initialize(out)

def initialize(out)
  @out = out
end

def print(str)

def print(str)
  write str
end

def puts(str)

def puts(str)
  print "#{str.chomp}\n"
end

def width

def width
  @width ||= @out.width
end

def write(str)

def write(str)
  @out.write str
end