Sha256: 9909c9e4326f9c9ae4abef1f223b654dd82bec0554077459daa23939b84476a9

Contents?: true

Size: 422 Bytes

Versions: 2

Compression:

Stored size: 422 Bytes

Contents

binding.pry
if defined?(PryByebug)
  Pry.config.pager = false
  Pry.commands.alias_command 'c', 'continue'
  Pry.commands.alias_command 'd', 'down'
  Pry.commands.alias_command 'f', 'finish'
  Pry.commands.alias_command 'n', 'next'
  Pry.commands.alias_command 's', 'step'
  Pry.commands.alias_command 'u', 'up'

  Pry::Commands.command /^$/, 'repeat last command' do
    _pry_.run_command Pry.history.to_a.last
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
markdown_exec-1.8.6 .pryrc
markdown_exec-1.8.5 .pryrc