fix(irbrc): make irb play nicer within emacs compilation buffers

This commit is contained in:
Jim Myhrberg
2025-01-06 10:29:30 +00:00
parent 0f0efd5917
commit 1ab8503b1c

2
irbrc
View File

@@ -1,2 +1,4 @@
require 'irb/completion'
IRB.conf[:USE_AUTOCOMPLETE] = false
IRB.conf[:USE_MULTILINE] = false if ENV['INSIDE_EMACS']
IRB.conf[:USE_READLINE] = false if ENV['INSIDE_EMACS']