16

in ~/.irbrc i have these lines:

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

and yet when i run irb and hit the up arrow nothing happens. also the irb history file specified is not getting created and nothing is logged to it.

quinn
  • 5,508
  • 10
  • 34
  • 54
  • 1
    What platform are you using? I'm pretty sure the default OS X install doesn't have readline support built in due to licensing issues. – Dave Bacher Jan 14 '10 at 17:53
  • What you have there appears to work for me on doze, except that I have to hit two up arrows for some reason. – rogerdpack Apr 27 '10 at 18:54
  • This solution worked for me: http://stackoverflow.com/questions/1752461/history-not-saving – Noah Sussman Jan 20 '11 at 13:21
  • 4
    Code in the question worked fine for me on OS X Mavericks. – David Tuite Dec 01 '13 at 18:04
  • 2
    See also https://stackoverflow.com/questions/37847822/irb-history-not-working-with-ruby-2-3-0?noredirect=1&lq=1 which discusses how ruby must be complied with `readline` – Jared Beck Jan 31 '18 at 17:04
  • If you're on OS X see Jared's comment. – rogerdpack Aug 08 '19 at 22:44
  • Try **Ctrl** + **P** / **Ctrl** + **N** before giving up. The actual keybinding to recall the previous commands from history is a feature of readline / libedit, which may be misconfigured on your system. I don't have the details, but you might be able to correct this with your own `~/.inputrc` / `~/.editrc`, by comparing with another system where it works. – TheDudeAbides Jan 13 '23 at 01:48

7 Answers7

20

irb history works in Debian Linux out of the box. There's no etc/irbrc, nor do I have a ~/.irbrc. So, hmmmm.

This person put a bit more in his irbrc than you did. Do you suppose the ARGV.concat could be the missing piece?

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" 
Wayne Conrad
  • 103,207
  • 26
  • 155
  • 191
  • 1
    RVM automatically adds an irbrc that does it. Not present on Ubuntu out of box without RVM. – Ciro Santilli OurBigBook.com Oct 14 '14 at 16:51
  • You are right! This is true of my Ubuntu 20.04-based Linux distro as well as Debian Bullseye (stable, which I tried out with Docker), no `/etc/irbc`, no `~/.irbc`. The difference on my desktop was I had a `~/.inputrc` that was messing up the up/down arrow key bindings for some reason. Folks who find themselves in that situation might want to try **Ctrl** + **P** to see if that works, before totally giving up. – TheDudeAbides Jan 13 '23 at 01:47
  • I don't think that `ARGV.concat` does anything though; I had to use `IRB.conf[:PROMPT_MODE] = :SIMPLE` instead, as described in the [irb docs](https://docs.ruby-lang.org/en/2.2.0/IRB.html#module-IRB-label-Customizing+the+IRB+Prompt). The other settings above were the defaults, excepting the history seems to default to 1000 and the `:HISTORY_FILE` is `~/.irb_history`. So the config settings might be extraneous to the OP's problem, as stated, which probably has more to do with a bug in `irb` that the time that they posted, or a misconfigured readline or libedit library. – TheDudeAbides Jan 13 '23 at 02:00
  • 1
    @TheDudeAbides I would bet money on things having changed since 2010 – Wayne Conrad Jan 13 '23 at 02:54
  • Not _that_ much, though, if you're using a Linux distro like CentOS 7. – TheDudeAbides Jan 23 '23 at 22:10
11

I don't have an answer for you why the above doesn't work, but I did find a file, /etc/irbrc on my system (OS X - Snow Leopard, Ruby 1.8.7) that does provide a working, persistent history for me. So two pieces of advice: i) check your /etc/irbrc (or equivalent) to make sure that there isn't anything in there that might interfere with your settings, and ii) try out the settings below to see if you can get history working that way.

# 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
liwp
  • 6,746
  • 1
  • 27
  • 39
  • despite that this seems kind of like faking it, this works for me. I know irb must have this feature built in somewhere. Oh well, i have a history now. thanks! – quinn Jan 14 '10 at 19:59
  • 1
    This was a great help to me. I would however note that I changed: `lines.nitems` into `lines.count` because lines.nitems don't work for me. – Franco Rondini Jun 08 '12 at 08:38
  • 2
    I also had to add: `require 'irb/ext/save-history'` – Franco Rondini Jun 08 '12 at 08:41
  • `/etc/irbrc` on OS X is now out of date. See [this question](http://stackoverflow.com/questions/37617519/is-etc-irbrc-installed-by-os-x-does-irb-read-it). – Franklin Yu Nov 19 '16 at 20:15
1

This is a known bug with a patch available. Easiest solution is to overwrite save-history.rb:

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

with a fixed version:

http://pastie.org/513500

or to do it in one go:

wget -O /usr/lib/ruby/1.8/irb/ext/save-history.rb http://pastie.org/pastes/513500/download
Mike McKay
  • 2,388
  • 1
  • 29
  • 32
0

This may also happen if you have extra irb config file, e.g. ~/.irbrc. If this is the case, copy the content from liwp's answer to the extra config and it should work.

medik
  • 1,174
  • 12
  • 17
0

I had the same problem on ubuntu 20.04 and fixed it by running:

gem install irb
Rob Geraghty
  • 116
  • 9
0

You may simply just need to set IRBRC environment variable. Add to your ~/.bash_profile or equivalent,

export IRBRC=~/.irbrc

which can/should contain:

require 'irb/ext/save-history'
IRB.conf[:SAVE_HISTORY] = 1000
IRB.conf[:HISTORY_FILE] = File.expand_path('~/.irb_history')
0

Check to make sure you built ruby with libreadline as irb history seems to not work without it.

jwood
  • 365
  • 2
  • 6