diff options
author | aycabta <[email protected]> | 2021-10-11 20:35:27 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-10-11 21:12:57 +0900 |
commit | 866a09dd9ea2775a3231c0e9833f3bca48947f30 (patch) | |
tree | bbbeb4715bb072b369162960990b591bd1bd94bb /lib/irb/context.rb | |
parent | dcaaf79ca06a1825a0e489d1c9d188d8c0d6f36f (diff) |
[ruby/irb] Add --extra-doc-dir option to show doc dialog
https://github.com/ruby/irb/commit/3f79cb506f
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 31d4126e5c..0a46c1b1d4 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -125,6 +125,8 @@ module IRB end self.save_history = IRB.conf[:SAVE_HISTORY] if IRB.conf[:SAVE_HISTORY] + @extra_doc_dirs = IRB.conf[:EXTRA_DOC_DIRS] + @echo = IRB.conf[:ECHO] if @echo.nil? @echo = true @@ -241,6 +243,9 @@ module IRB # # If set to +false+, <code>^D</code> will quit irb. attr_accessor :ignore_eof + # Specify the installation locations of the ri file to be displayed in the + # document dialog. + attr_accessor :extra_doc_dirs # Whether to echo the return value to output or not. # # Uses <code>IRB.conf[:ECHO]</code> if available, or defaults to +true+. |