Sha256: 4c1a8dce74e203f1044457e9cf60cca6abab36187bf5dbf75e1d67531eb84a7b

Contents?: true

Size: 247 Bytes

Versions: 2

Compression:

Stored size: 247 Bytes

Contents

Pry::Commands.create_command 'no-prompt' do
  description 'Show/hide REPL command prompt prefix'

  def process
    case _pry_.prompt
    when Pry::NO_PROMPT
      _pry_.pop_prompt
    else
      _pry_.push_prompt Pry::NO_PROMPT
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rash-shell-0.1.1 lib/rash/shell/pry/commands/no_prompt.rb
rash-shell-0.1.0 lib/rash/shell/pry/commands/no_prompt.rb