[ruby/irb] Document infinite history

(https://github.com/ruby/irb/pull/1012)

As introduced in 824473e8

https://github.com/ruby/irb/commit/15e3f50c3f
This commit is contained in:
Gert Goet 2024-10-11 18:34:56 +02:00 committed by git
parent eccfb6e60c
commit 95abf679c5

View File

@ -221,11 +221,11 @@ require_relative "irb/pager"
# *new_filepath*, which becomes the history file for the session.
#
# You can change the number of commands saved by adding to your configuration
# file: `IRB.conf[:SAVE_HISTORY] = *n*`, wheHISTORY_FILEre *n* is one of:
# file: `IRB.conf[:SAVE_HISTORY] = *n*`, where *n* is one of:
#
# * Positive integer: the number of commands to be saved,
# * Zero: all commands are to be saved.
# * `nil`: no commands are to be saved,.
# * Positive integer: the number of commands to be saved.
# * Negative integer: all commands are to be saved.
# * Zero or `nil`: no commands are to be saved.
#
#
# During the session, you can use methods `conf.save_history` or