class Pry::Pager

Public Instance Methods

best_available() click to toggle source
# File lib/mind_control/pry_monkey_patches.rb, line 7
def best_available
  # If we inside mind-control session
  if _pry_ == Pry.current[ :mind_control_pry_instance ]
    # Use our custom pager
    MindControlPager.new( _pry_.input, _pry_.output )
  else
    vanilla_best_available
  end
end
Also aliased as: vanilla_best_available
vanilla_best_available()
Alias for: best_available