From 1ab8503b1cf4cd86f552e926c57907c4e2c65940 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 6 Jan 2025 10:29:30 +0000 Subject: [PATCH] fix(irbrc): make irb play nicer within emacs compilation buffers --- irbrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/irbrc b/irbrc index 0d8c04d..1274c0f 100644 --- a/irbrc +++ b/irbrc @@ -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']