mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
2c54ab302f
changes the prompt
6 lines
220 B
Ruby
6 lines
220 B
Ruby
class Pry
|
|
|
|
# This proc will be instance_eval's against the active Pry instance
|
|
DEFAULT_CUSTOM_COMPLETIONS = proc { commands.commands.keys }
|
|
FILE_COMPLETIONS = proc { commands.commands.keys + Dir.entries('.') }
|
|
end
|