| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-08-29 | [ruby/reline] Remove @dialog_updown and @dialog_contents_width | aycabta | |
| https://github.com/ruby/reline/commit/458cb8a9cc | |||
| 2021-08-29 | [ruby/reline] Implement dynamic selection of candidates | aycabta | |
| https://github.com/ruby/reline/commit/e46437df00 | |||
| 2021-08-29 | [ruby/reline] Completion journey starts with one of candidates | aycabta | |
| First one is just original string. https://github.com/ruby/reline/commit/ccb70cc240 | |||
| 2021-08-29 | [ruby/reline] Move cursor correctly when current line is auto wrapped | aycabta | |
| https://github.com/ruby/reline/commit/14c8fade54 | |||
| 2021-08-29 | [ruby/reline] Update dialog backup before clearing | aycabta | |
| https://github.com/ruby/reline/commit/a39e2c8813 | |||
| 2021-08-29 | [ruby/reline] Show autocomplete correctly when starts from prev line | aycabta | |
| https://github.com/ruby/reline/commit/f31a76ff31 | |||
| 2021-08-29 | [ruby/reline] Remove unnecessary metadata between lines | aycabta | |
| https://github.com/ruby/reline/commit/83928249e3 | |||
| 2021-08-29 | [ruby/reline] Combine vertical processing into @dialog_vertical_offset | aycabta | |
| https://github.com/ruby/reline/commit/600b93620c | |||
| 2021-08-29 | [ruby/reline] Drop too much contents before processing | aycabta | |
| https://github.com/ruby/reline/commit/94f7027edc | |||
| 2021-08-29 | [ruby/reline] Display autocomplete below original line if end point was wrapped | aycabta | |
| https://github.com/ruby/reline/commit/49f3392d59 | |||
| 2021-08-29 | [ruby/reline] Scroll properly to create margin | aycabta | |
| https://github.com/ruby/reline/commit/064d54f8f1 | |||
| 2021-08-29 | [ruby/reline] Move dialog pos to left when goes beyond right edge | aycabta | |
| https://github.com/ruby/reline/commit/f1efa2b062 | |||
| 2021-08-29 | [ruby/reline] Support hide/show cursor on Windows | aycabta | |
| https://github.com/ruby/reline/commit/0c870813bd | |||
| 2021-08-29 | [ruby/reline] Hide cursor when rendering dialog | aycabta | |
| https://github.com/ruby/reline/commit/a9050cf676 | |||
| 2021-08-29 | [ruby/reline] Remove debug code | aycabta | |
| https://github.com/ruby/reline/commit/2389d175f7 | |||
| 2021-08-29 | [ruby/reline] Clear after cursor | aycabta | |
| https://github.com/ruby/reline/commit/4d7503cd1f | |||
| 2021-08-29 | [ruby/reline] Move cursor to rerender right margin of dialog correctly | aycabta | |
| https://github.com/ruby/reline/commit/554855013b | |||
| 2021-08-29 | [ruby/reline] Create windows.rb | usa | |
| see issue #317 https://github.com/ruby/reline/commit/aad164de93 | |||
| 2021-08-29 | [ruby/reline] Add "sleep 0.01" to Windows event loop | aycabta | |
| https://github.com/ruby/reline/commit/dfc89eae53 | |||
| 2021-08-29 | [ruby/reline] Add comments about where rerendering | aycabta | |
| https://github.com/ruby/reline/commit/4406069b7e | |||
| 2021-08-29 | [ruby/reline] Use background color instead of border frame | aycabta | |
| https://github.com/ruby/reline/commit/8f1db0a076 | |||
| 2021-08-29 | [ruby/reline] Suppress warning; unused variable | aycabta | |
| https://github.com/ruby/reline/commit/74a6124e8d | |||
| 2021-08-29 | [ruby/reline] Remove an unnecessary variable | aycabta | |
| https://github.com/ruby/reline/commit/5435c1aa3f | |||
| 2021-08-29 | [ruby/reline] Implement dialog with autocomplete callback | aycabta | |
| https://github.com/ruby/reline/commit/1401d6165e | |||
| 2021-08-29 | [ruby/reline] Separate calling completion proc with checking args | aycabta | |
| https://github.com/ruby/reline/commit/3203cb97db | |||
| 2021-08-14 | [ruby/reline] Remove interrupt avoidance | aycabta | |
| There used to be a process that did not want to be interrupted by SIGINT, so it was trapped, but that process is no longer there. https://github.com/ruby/reline/commit/ba7252a5db | |||
| 2021-08-12 | [ruby/reline] Version 0.2.7 | aycabta | |
| https://github.com/ruby/reline/commit/040d29b4c0 | |||
| 2021-08-06 | Check the result of tigetstr | Nobuyoshi Nakada | |
| 2021-08-06 | Fix caching of curses_dl | Nobuyoshi Nakada | |
| 2021-08-06 | Fix the result of checking the existence of constants being reversed | aycabta | |
| 2021-08-04 | Handle SIGINT in other thread correctly | aycabta | |
| Co-authored-by: Koichi Sasada <ko1@atdot.net> Notes: Merged: https://github.com/ruby/ruby/pull/4704 | |||
| 2021-08-04 | Use Symbol of signal for trap | aycabta | |
| Notes: Merged: https://github.com/ruby/ruby/pull/4704 | |||
| 2021-07-30 | [ruby/reline] Support Terminfo on Cygwin and macOS | aycabta | |
| https://github.com/ruby/reline/commit/b0b75fcd27 | |||
| 2021-07-30 | [ruby/reline] Don't check the existence of Terminfo on Windows | aycabta | |
| https://github.com/ruby/reline/commit/320f09055c | |||
| 2021-07-30 | [ruby/reline] Check TYPE_VARIADIC | aycabta | |
| https://github.com/ruby/reline/commit/8e62e46e33 | |||
| 2021-07-30 | [ruby/reline] Define StringWithTiparm instead of singular method | aycabta | |
| https://github.com/ruby/reline/commit/de234dc875 | |||
| 2021-07-30 | [ruby/reline] Fixed Ctrl+Enter key in Windows. | SilverPhoenix99 | |
| https://github.com/ruby/reline/commit/0c38e39023 | |||
| 2021-07-30 | [ruby/reline] Check empty .inputrc | aycabta | |
| https://github.com/ruby/reline/commit/b60b3b76cd | |||
| 2021-07-30 | [ruby/reline] Add original C function declarations comment for each function | aycabta | |
| https://github.com/ruby/reline/commit/9a25ee9f12 | |||
| 2021-07-30 | [ruby/reline] Fix reline on OpenBSD | Jeremy Evans | |
| OpenBSD doesn't support tiparm, only tparm. I'm not sure if the two are compatible, but this at least this allows me to run irb on OpenBSD. https://github.com/ruby/reline/commit/0ce2b34e2b | |||
| 2021-07-30 | [ruby/reline] Added support for Numpad divide key on Windows. | SilverPhoenix99 | |
| https://github.com/ruby/reline/commit/84577da0c4 | |||
| 2021-07-30 | [ruby/reline] Support Enter key of numpad on Windows | aycabta | |
| The yamatanooroti gem can't emulate numpad key pressing... https://github.com/ruby/reline/commit/8e9da1aeaf | |||
| 2021-07-30 | [ruby/reline] Windows cmd: Don't type anything when pressing ALT keys alone | Lars Kanis | |
| Fixes #298 https://github.com/ruby/reline/commit/72acfcd27a | |||
| 2021-07-30 | [ruby/reline] Add TODO comment to implement tigetflag() and tigetnum() | aycabta | |
| https://github.com/ruby/reline/commit/a0d946a398 | |||
| 2021-06-25 | [ruby/reline] Fix missing require. | Samuel Williams | |
| https://github.com/ruby/reline/commit/010b28dfe9 | |||
| 2021-06-25 | [ruby/reline] Avoid using blocking `IO.select`. | Samuel Williams | |
| https://github.com/ruby/reline/commit/de94746393 | |||
| 2021-06-21 | Rescue conversion error of inputrc | aycabta | |
| 2021-06-21 | Check Ruby version to use Fiddle with variadic args in test-all | aycabta | |
| 2021-06-21 | [ruby/reline] Version 0.2.6 | aycabta | |
| https://github.com/ruby/reline/commit/5917e3a337 | |||
| 2021-06-21 | [ruby/reline] Remove FIXME comment in #render | aycabta | |
| https://github.com/ruby/reline/commit/acd8f8efbb | |||
