docker上のpry-byebugにショートカットを設定したい
解決
docker上の ~/.pryrc
に記載する。
事象
pry-byebugでrubyをデバッグする - Qiita のショートカットをプロジェクトに設置しても、使用できない
if defined?(PryByebug)
Pry.commands.alias_command 's', 'step'
Pry.commands.alias_command 'n', 'next'
Pry.commands.alias_command 'f', 'finish'
Pry.commands.alias_command 'c', 'continue'
end