From: wolf@... Date: 2017-05-29T18:46:24+00:00 Subject: [ruby-core:81459] [Ruby trunk Feature#13604] Exposing alternative interface of readline Issue #13604 has been updated by graywolf (Gray Wolf). File readline_alternative_interface_update1.diff added I think I managed to simplify it quite a bit, if you would take a look :) Also I'm thinking about exposing the add_hist setting, since it's saved on mReadline anyway, it would allow user to dynamicly enable/disable auto-adding of history between each invocation of read_char. What do you think? ---------------------------------------- Feature #13604: Exposing alternative interface of readline https://bugs.ruby-lang.org/issues/13604#change-65162 * Author: graywolf (Gray Wolf) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- GNU Readline has multiple modes of operation. At the moment, the readline extension only supports typical, `Readline.readline` mode. However, there is also alternative callback-based interface which is also useful. ```ruby require_relative 'readline' PROMPT = "rltest$ " $running = true $sigwinch_received = false Readline.handler_install(PROMPT, add_hist: true) do |line| # Can use ^D (stty eof) or `exit' to exit. if !line || line == "exit" puts unless line puts "exit" Readline.handler_remove $running = false else puts "input line: #{line}" end end Signal.trap('SIGWINCH') { $sigwinch_received = true } while $running do rs = IO.select([$stdin]) if $sigwinch_received Readline.resize_terminal $sigwinch_received = false end Readline.read_char if r = rs[0] end puts "rltest: Event loop has exited" ``` Patch adding support for this is attached. This is my first try at contributing to ruby, so please tell me what I did wrong (I'm sure something, C is not my strong language). ---Files-------------------------------- readline_alternative_interface.diff (7.22 KB) readline_alternative_interface_example.rb (606 Bytes) readline_alternative_interface_update1.diff (7.08 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: