rlue (Ryan Lue)
- Login: rlue
- Registered on: 11/21/2017
- Last sign in: 11/22/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/22/2017
-
03:50 AM Ruby Feature #14125: Readline Module (STDLIB): Add support for ^O emacs keybinding?
- Whoops. All those superscript characters should be regular characters preceded by a carat, to signify a CTRL key binding.
-
03:49 AM Ruby Feature #14125 (Closed): Readline Module (STDLIB): Add support for ^O emacs keybinding?
- The pry gem features a REPL that uses the Readline stdlib module. With the help of this module, pry's REPL supports most emacs-style readline key bindings:
* ^P / ^N for navigating up/down the command line history,
* ^K for killing t...