# HG changeset patch # User nanaya # Date 1663149973 -32400 # Node ID 6010e722b5da15906b519ad6cf65807dbeade05a # Parent 71254a6ddb4c8d4872c5cc92c1bdd35eeeca6ad4 [irbrc] Disable syntax highlighting as it slows down things Reference: https://github.com/ruby/irb/issues/292 diff -r 71254a6ddb4c -r 6010e722b5da rc/irbrc --- a/rc/irbrc Tue Aug 09 04:16:52 2022 +0900 +++ b/rc/irbrc Wed Sep 14 19:06:13 2022 +0900 @@ -1,4 +1,5 @@ require 'irb/ext/save-history' +IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history" IRB.conf[:SAVE_HISTORY] = 20000 -IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history" IRB.conf[:USE_AUTOCOMPLETE] = false +IRB.conf[:USE_MULTILINE] = false