1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

chaned Pry::FILE_PROMPT to Pry::SHELL_PROMPT

This commit is contained in:
John Mair 2011-04-16 21:30:22 +12:00
parent 3d85ed3243
commit 1c4aeb414a

View file

@ -24,7 +24,7 @@ class Pry
# A simple prompt - doesn't display target or nesting level
SIMPLE_PROMPT = [proc { ">> " }, proc { ">* " }]
FILE_PROMPT = [
SHELL_PROMPT = [
proc { |target_self, _| "pry #{Pry.view_clip(target_self)}:#{Dir.pwd} $ " },
proc { |target_self, _| "pry #{Pry.view_clip(target_self)}:#{Dir.pwd} * " }
]