Sha256: 44b4cfdeec94602249c190dcd46fdc5d0528069efc99e2972257a414539bffcb

Contents?: true

Size: 709 Bytes

Versions: 159

Compression:

Stored size: 709 Bytes

Contents

class Pry
  class Command::ShellMode < Pry::ClassCommand
    match 'shell-mode'
    group 'Input and Output'
    description 'Toggle shell mode. Bring in pwd prompt and file completion.'

    banner <<-'BANNER'
      Toggle shell mode. Bring in pwd prompt and file completion.
    BANNER

    def process
      case _pry_.prompt
      when Pry::SHELL_PROMPT
        _pry_.pop_prompt
        _pry_.custom_completions = _pry_.config.file_completions
      else
        _pry_.push_prompt Pry::SHELL_PROMPT
        _pry_.custom_completions = _pry_.config.command_completions
      end
    end
  end

  Pry::Commands.add_command(Pry::Command::ShellMode)
  Pry::Commands.alias_command 'file-mode', 'shell-mode'
end

Version data entries

159 entries across 152 versions & 35 rubygems

Version Path
pry-0.10.2 lib/pry/commands/shell_mode.rb
pry-0.10.2-i386-mswin32 lib/pry/commands/shell_mode.rb
pry-0.10.2-i386-mingw32 lib/pry/commands/shell_mode.rb
pry-0.10.2-x64-mingw32 lib/pry/commands/shell_mode.rb
pry-0.10.2-java lib/pry/commands/shell_mode.rb
geminfo-0.1.0 path/gems/pry-0.10.1-x86-mingw32/lib/pry/commands/shell_mode.rb
solidus_backend-1.0.0.pre3 vendor/bundle/gems/pry-0.10.1/lib/pry/commands/shell_mode.rb
solidus_backend-1.0.0.pre2 vendor/bundle/gems/pry-0.10.1/lib/pry/commands/shell_mode.rb
solidus_backend-1.0.0.pre vendor/bundle/gems/pry-0.10.1/lib/pry/commands/shell_mode.rb
pry-0.10.1 lib/pry/commands/shell_mode.rb
pry-0.10.1-i386-mswin32 lib/pry/commands/shell_mode.rb
pry-0.10.1-i386-mingw32 lib/pry/commands/shell_mode.rb
pry-0.10.1-x64-mingw32 lib/pry/commands/shell_mode.rb
pry-0.10.1-java lib/pry/commands/shell_mode.rb
whos_dated_who-0.1.0 vendor/bundle/gems/pry-0.10.0/lib/pry/commands/shell_mode.rb
whos_dated_who-0.0.1 vendor/bundle/gems/pry-0.10.0/lib/pry/commands/shell_mode.rb
pry-0.10.0 lib/pry/commands/shell_mode.rb
pry-0.10.0-i386-mswin32 lib/pry/commands/shell_mode.rb
pry-0.10.0-i386-mingw32 lib/pry/commands/shell_mode.rb
pry-0.10.0-x64-mingw32 lib/pry/commands/shell_mode.rb