summaryrefslogtreecommitdiff
path: root/lib/pry/commands/bang.rb
blob: 7dc6984a771ca9539f7644842c7e5cbd3c3568ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Pry
  class Command::Bang < Pry::ClassCommand
    match(/^\s*!\s*$/)
    group 'Editing'
    description 'Clear the input buffer.'
    command_options use_prefix: false

    banner <<-'BANNER'
      Clear the input buffer. Useful if the parsing process goes wrong and you get
      stuck in the read loop.
    BANNER

    def process
      output.puts 'Input buffer cleared!'
      eval_string.replace('')
    end
  end

  Pry::Commands.add_command(Pry::Command::Bang)
end