We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcfb63b commit a2b2a75Copy full SHA for a2b2a75
.pryrc
@@ -0,0 +1,20 @@
1
+# coding: utf-8
2
+# bin-hacks/~.pryrc
3
+# Link this from home directory:
4
+# cd ; ln -s ~/bin-hacks/.pryrc
5
+
6
+# MIT/Expat License https://github.com/deivid-rodriguez/pry-byebug/blob/master/LICENSE
7
+# Copyright David Rodríguez
8
9
+# from https://github.com/deivid-rodriguez/pry-byebug/blob/master/README.md
10
+if defined?(PryByebug)
11
+ Pry.commands.alias_command 'c', 'continue'
12
+ Pry.commands.alias_command 's', 'step'
13
+ Pry.commands.alias_command 'n', 'next'
14
+ Pry.commands.alias_command 'f', 'finish'
15
+end
16
17
+# Hit Enter to repeat last command
18
+Pry::Commands.command /^$/, "repeat last command" do
19
+ _pry_.run_command Pry.history.to_a.last
20
0 commit comments