summaryrefslogtreecommitdiff
path: root/lib/pry/commands/bang_pry.rb
blob: c9cd7ba03d7bd9f2f067ce68936612628c6c381c (plain)
1
2
3
4
5
class Pry
  Pry::Commands.command "!pry", "Start a Pry session on current self; this even works mid multi-line expression." do
    target.pry
  end
end