annotate .irbrc @ 530:dbb75edda2ff
default tip
cleanup: remove ancient distnoted reaper script
Surely this bug has been fixed in the 9+ years that the script has
been run once a minute by cron on my laptop. To my surprise, it looks
like the Migration Assistant even managed to carry it across laptops!
| author |
Augie Fackler <raf@durin42.com> |
| date |
Sat, 03 Jan 2026 19:12:16 -0500 |
| parents |
b2d9ac793cb0 |
| children |
|
| rev |
line source |
|
113
|
1 # -*- mode:ruby -*- |
|
|
2 IRB.conf[:AUTO_INDENT] = true |
|
|
3 IRB.conf[:USE_READLINE] = true |
|
|
4 IRB.conf[:LOAD_MODULES] = [] unless IRB.conf.key?(:LOAD_MODULES) |
|
|
5 unless IRB.conf[:LOAD_MODULES].include?('irb/completion') |
|
|
6 IRB.conf[:LOAD_MODULES] << 'irb/completion' |
|
|
7 end |
|
119
|
8 IRB.conf[:SAVE_HISTORY] = 1000 |
|
|
9 IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history" |