unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Read characters from without newline
@ 2021-08-28 14:09 Zelphir Kaltstahl
  2021-08-28 14:52 ` Mike Gran
  2021-08-28 15:19 ` Chris Vine
  0 siblings, 2 replies; 6+ messages in thread
From: Zelphir Kaltstahl @ 2021-08-28 14:09 UTC (permalink / raw)
  To: Guile User

Hello Guile users,

I am trying to find a way to read a character from command line or REPL, without
having to enter a newline, confirming the input.

For example I found this for Python: https://stackoverflow.com/a/21659588
<https://stackoverflow.com/a/21659588>

I read on https://www.gnu.org/software/guile/manual/html_node/Buffering.html
<https://www.gnu.org/software/guile/manual/html_node/Buffering.html> about
buffering and thought, that I could simply set the port to be unbuffered using
(setvbuf port 'none) and then call (get-char port) as follows:

~~~~
(import
 (except (rnrs base) let-values map)
 (only (guile)
       ;; lambda forms
       lambda* λ
       ;; input output
       current-input-port)
 (ice-9 textual-ports)
 (ice-9 optargs))

(let ([port (current-input-port)])
  (setvbuf port 'none)
  (get-char port))
~~~~

However, this does not work. The terminal emulator might not send input
immediately to the Guile program. Even in the Guile REPL and in Emacs Geiser
this does not work. I guess it would work, if they did send each character
immediately to the Guile program, because the following works:

~~~~
(display 
  (call-with-input-string "ab"
    (λ (in-port)
      (setvbuf in-port 'none)
      (get-char in-port))))
~~~~

There is no newline in the string "ab" and only the "a" is displayed.

So the question might be, how one can get into a mode, where Guile receives
input immediately, taking over control of the terminal or REPL.

However, I am not sure how the Python solution does this.

I have some command line program, in which I let the user choose what to do next
by entering a character and then pressing the return key to confirm the input. I
think it would be nice to not have to press return all the time and only needing
to press the character's key.

Does anyone know how to do this in Guile?

Best regards,
Zelphir

-- 
repositories: https://notabug.org/ZelphirKaltstahl




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-08-29 10:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-28 14:09 Read characters from without newline Zelphir Kaltstahl
2021-08-28 14:52 ` Mike Gran
2021-08-28 20:56   ` Frank Terbeck
2021-08-28 23:47     ` Tim Meehan
2021-08-29 10:07       ` Hans-Werner Roitzsch
2021-08-28 15:19 ` Chris Vine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).