15

在 ~/.irbrc 我有这些行:

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

然而,当我跑步irb并按下向上箭头时,什么也没有发生。也没有创建指定的 irb 历史文件,也没有记录任何内容。

4

6 回答 6

20

irb history 在 Debian Linux 中开箱即用。没有 etc/irbrc,我也没有 ~/.irbrc。所以,嗯。

这个人在他的 irbrc 中放的比你多。你认为 ARGV.concat 可能是缺失的部分吗?

require 'irb/completion'
require 'irb/ext/save-history'
ARGV.concat [ "--readline", "--prompt-mode", "simple" ]
IRB.conf[:SAVE_HISTORY] = 100
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history" 
于 2010-01-14T17:56:25.260 回答
11

我不知道为什么上述方法不起作用,但我确实/etc/irbrc在我的系统(OS X - Snow Leopard,Ruby 1.8.7)上找到了一个文件,它确实为我提供了一个有效的、持久的历史记录。所以有两条建议:i)检查您的 /etc/irbrc (或等效项)以确保其中没有任何可能干扰您的设置的内容,以及 ii)尝试以下设置以查看是否可以获得历史就是这样运作的。

# Some default enhancements/settings for IRB, based on
# http://wiki.rubygarden.org/Ruby/page/show/Irb/TipsAndTricks

unless defined? ETC_IRBRC_LOADED

  # Require RubyGems by default.
  require 'rubygems'

  # Activate auto-completion.
  require 'irb/completion'

  # Use the simple prompt if possible.
  IRB.conf[:PROMPT_MODE] = :SIMPLE if IRB.conf[:PROMPT_MODE] == :DEFAULT

  # Setup permanent history.
  HISTFILE = "~/.irb_history"
  MAXHISTSIZE = 100
  begin
    histfile = File::expand_path(HISTFILE)
    if File::exists?(histfile)
      lines = IO::readlines(histfile).collect { |line| line.chomp }
      puts "Read #{lines.nitems} saved history commands from '#{histfile}'." if $VERBOSE
      Readline::HISTORY.push(*lines)
    else
      puts "History file '#{histfile}' was empty or non-existant." if $VERBOSE
    end
    Kernel::at_exit do
      lines = Readline::HISTORY.to_a.reverse.uniq.reverse
      lines = lines[-MAXHISTSIZE, MAXHISTSIZE] if lines.nitems > MAXHISTSIZE
      puts "Saving #{lines.length} history lines to '#{histfile}'." if $VERBOSE
      File::open(histfile, File::WRONLY|File::CREAT|File::TRUNC) { |io| io.puts lines.join("\n") }
    end
  rescue => e
    puts "Error when configuring permanent history: #{e}" if $VERBOSE
  end

  ETC_IRBRC_LOADED=true
end
于 2010-01-14T17:50:01.687 回答
1

这是一个已知的错误,有可用的补丁。最简单的解决方案是覆盖 save-history.rb:

/usr/lib/ruby/1.8/irb/ext/save-history.rb

有一个固定版本:

http://pastie.org/513500

或一口气完成:

wget -O /usr/lib/ruby/1.8/irb/ext/save-history.rb http://pastie.org/pastes/513500/download
于 2010-02-06T13:35:37.697 回答
0

检查以确保您使用 libreadline 构建了 ruby​​,因为没有它,irb 历史似乎无法工作。

于 2012-01-03T17:44:29.460 回答
0

我在 ubuntu 20.04 上遇到了同样的问题,并通过运行修复了它:

gem install irb
于 2020-12-11T14:17:58.983 回答
0

如果您有额外的 irb 配置文件,例如~/.irbrc. 如果是这种情况,请将 liwp 的答案中的内容复制到额外的配置中,它应该可以工作。

于 2016-08-05T10:58:25.320 回答