From 9c1f01c8dbfff07e20d7710720715f6506a9d45d Mon Sep 17 00:00:00 2001 From: Andrew Hartford Date: Wed, 6 Nov 2013 10:40:15 -0500 Subject: [PATCH] Configure pry --- configs/pry/dot_pryrc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 configs/pry/dot_pryrc diff --git a/configs/pry/dot_pryrc b/configs/pry/dot_pryrc new file mode 100644 index 0000000..3bcd597 --- /dev/null +++ b/configs/pry/dot_pryrc @@ -0,0 +1,8 @@ +if defined?(PryDebugger) + Pry.commands.alias_command 'c', 'continue' + Pry.commands.alias_command 's', 'step' + Pry.commands.alias_command 'n', 'next' + Pry.commands.alias_command 'f', 'finish' +end + +# vim: set filetype=ruby: