| Age | Commit message (Collapse) | Author |
|
IRB should show a menu first if a completed list has plural items. But just
shows document without menu if a completed list with plural items includes a
perfect matched item. The behavior is a bug. This commit fixes it.
|
|
|
|
|
|
|
|
|
|
Reline performs completion in a case-insensitive fashon if
Readline.completion_case_fold or completion-ignore-case of .inputrc are set
"on".
|
|
|
|
|
|
|
|
In the incremental search by C-r, search word is saved when it's determined. In
the next incremental search by C-r, if a user presses C-r again with the empty
search word, the determined previous search word is used to search.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To reproduce this bug, type one character into irb, then press the
delete key on your keyboard.
|
|
Fix TypeError when typing `''.[TAB]`
|
|
|
|
|
|
|
|
|
|
@old_trap is the string "DEFAULT" and not a callable object (Proc)
if there are no other signal handlers for SIGINT signal to chain.
|
|
|
|
|
|
|
|
|
|
|
|
This commit suppresses a strange behavior below:
if true
1[cursor]
end
and press down key
if true
1
end
|
|
|