From 260235ce871c3e7718af8d612f1a8ed400b56070 Mon Sep 17 00:00:00 2001 From: aycabta Date: Sun, 28 Apr 2019 06:37:39 +0900 Subject: Use Reline as Reidline multiline editor in IRB --- lib/irb.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/irb.rb') diff --git a/lib/irb.rb b/lib/irb.rb index 773d0d07a4..1badb9b394 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -60,6 +60,8 @@ require "irb/version" # -W[level=2] Same as `ruby -W` # --inspect Use `inspect' for output (default except for bc mode) # --noinspect Don't use inspect for output +# --reidline Use Reidline extension module +# --noreidline Don't use Reidline extension module # --readline Use Readline extension module # --noreadline Don't use Readline extension module # --colorize Use colorization @@ -69,7 +71,7 @@ require "irb/version" # Switch prompt mode. Pre-defined prompt modes are # `default', `simple', `xmp' and `inf-ruby' # --inf-ruby-mode Use prompt appropriate for inf-ruby-mode on emacs. -# Suppresses --readline. +# Suppresses --reidline and --readline. # --simple-prompt Simple prompt mode # --noprompt No prompt mode # --tracer Display trace for each execution of commands. @@ -97,6 +99,7 @@ require "irb/version" # IRB.conf[:IRB_RC] = nil # IRB.conf[:BACK_TRACE_LIMIT]=16 # IRB.conf[:USE_LOADER] = false +# IRB.conf[:USE_REIDLINE] = nil # IRB.conf[:USE_READLINE] = nil # IRB.conf[:USE_COLORIZE] = true # IRB.conf[:USE_TRACER] = false @@ -412,7 +415,6 @@ module IRB @context = Context.new(self, workspace, input_method, output_method) @context.main.extend ExtendCommandBundle @signal_status = :IN_IRB - @scanner = RubyLex.new end -- cgit v1.2.3