Module: IRWebmachine::Pry
- Defined in:
- lib/irwebmachine/pry.rb,
lib/irwebmachine/pry/nav.rb
Defined Under Namespace
Classes: EnterStack, PrintStack
Constant Summary collapse
Pry::CommandSet.new do command("continue") { throw(:breakout, :continue) } alias_command "c", "continue" command("next") { throw(:breakout, :next) } alias_command "n", "next" command("prev") { throw(:breakout, :previous) } alias_command "p", "prev" end