summaryrefslogtreecommitdiff
path: root/lib/pry/commands/bang.rb
blob: ca42834edfa38a414f4ce5a6dff070a3feaacf07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class Pry
  class Command
    class 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
end