Skip to content

Commit a2b2a75

Browse files
committed
Add pry-byebug keyboard shortcuts
1 parent bcfb63b commit a2b2a75

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.pryrc

+20
Original file line numberDiff line numberDiff line change
@@ -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+
end

0 commit comments

Comments
 (0)