Mercurial > ec-dotfiles
changeset 684:6010e722b5da
[irbrc] Disable syntax highlighting as it slows down things
Reference: https://github.com/ruby/irb/issues/292
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 14 Sep 2022 19:06:13 +0900 |
parents | 71254a6ddb4c |
children | 07542066867e |
files | rc/irbrc |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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