rbenv irb history is not saving

2020-02-09 08:02发布

问题:

I install ruby via rbenv-installer.

When I use irb console, I can use history by pressing up and down on keyboard. And when I exited from console and start it again, I can't use prewious history. When I press up-arrow-button, nothing was happened.

When I used rvm this option was working. How can I switch on it in rbenv?

回答1:

I found this way for solving my problem. In file ~/.irbrc write:

require 'irb/ext/save-history'
#History configuration
IRB.conf[:SAVE_HISTORY] = 100
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history"

Found in this question: irb history not working



回答2:

Create ~/.irbrc if it does not exist, and add the following line to it:

IRB.conf[:SAVE_HISTORY] = 1000