我想通过q
而不是exit!
两者都不适合我。
Pry.commands.alias_command 'q', 'exit!'
Pry.commands.rename_command 'q', 'exit!'
答案 0 :(得分:2)
这对我有用:
Pry.commands.alias_command :q, "!!!"
答案 1 :(得分:0)
Grych的答案对我很有用。只是想指出,alias_command
方法带有第三个参数,它允许您添加别名的描述:
Pry.commands.alias_command :q, :exit, 'a helpful and poetic description for exiting from pry'