Florian Gross wrote:
>
> Giulio Piancastelli wrote:
>
> To the maintainers of the one click installer: Please fix IRB. It always
> uses readline. The error is in irb/context.rb:
>
> > 	if (defined?(ReadlineInputMethod) &&
> >             (use_readline?)) || IRB.conf[:PROMPT_MODE] !=
> :INF_RUBY && STDIN.tty?))
> > 	  @io = ReadlineInputMethod.new
> > 	else
> > 	  @io = StdioInputMethod.new
> > 	end
>
> This should be this:
>
> > 	if (defined?(ReadlineInputMethod) &&
> >             (use_readline?))
> > 	  @io = ReadlineInputMethod.new
> > 	else
> > 	  @io = StdioInputMethod.new
> > 	end

This should really be fixed in IRB, but I can patch this for now.

> It would also be very nice if a default .inputrc could be included. This
> is causing trouble for all German and Italian users and I guess there
> are others that are affected by this, too...

Can you send me something that you think would be appropriate as a default
.inputrc?

Thanks,
Curt