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