oleg_antonyan (Oleg Antonyan)
- Login: oleg_antonyan
- Registered on: 02/26/2016
- Last sign in: 03/14/2024
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 1 | 2 |
Activity
12/21/2023
-
09:47 AM Ruby Bug #20074: IRB/Pry search up arrow in 3.3 changed behaviour "\e[A": history-search-backward
- hsbt (Hiroshi SHIBATA) wrote in #note-1:
> Thanks for your report. Ruby 3.3 will use reline that is readline replacement of pure ruby by default.
> ...
Thank you! Indeed, readline-ext gem helps.
Reported to reline: https://github.com/...
12/20/2023
-
09:50 PM Ruby Bug #20074 (Third Party's Issue): IRB/Pry search up arrow in 3.3 changed behaviour "\e[A": history-search-backward
- In 3.3 since preview 1 this handy readline feature is kind of broken
``` shell
$ cat ~/.inputrc
"\e[A": history-search-backward
"\e[B": history-search-forward
```
It supposed to search history by starting typing substring, yo...
02/26/2016
-
09:17 AM Ruby Feature #12113 (Open): Global method inside Delegator causes NameError
- ~~~ruby
def some_func
puts '12'
end
class Klass < Delegator
def initialize(obj)
@obj = obj
end
def __getobj__
@obj
end
def func
some_func #=> /home/oleg/.rbenv/versions/2.3.0/lib64/ruby/2.3.0/del...