hyper-literate/collects/readline/doc.txt
Robby Findler 9e5d391dfb ...
original commit: 66a62c2f50bd2b8c85867be3e415c6a0b3881f20
2000-05-25 15:55:50 +00:00

55 lines
1.7 KiB
Plaintext

The _readline_ collection (not to be confused with MzScheme's
`read-line' procedure) provides glue for using GNU's readline library
with the MzScheme read-eval-print-loop. It has been tested under Linux
(various flavors), FreeBSD, and Solaris.
To use readline, you must be able to compile the "mzrl.c" file to
produce a MzScheme extension, which requires a C compiler. The
"mzmake.ss" program in the "readline" library attempts to compile it
for you, and the collection installer runs "mzmake.ss". Thus, if the
installation succeeds, you can use the readline library right
away. Otherwise, you may have to modified "mzmake.ss" to get it to
work.
Normal use of readline
----------------------
The _rep.ss_ library installs a readline-based function for the
prompt-and-read part of MzScheme's read-eval-print loop.
I put the following in my ~/.mzschemerc so that MzScheme always starts
with readline support:
(require-library "rep.ss" "readline")
The readline history is stored across invocations in ~/.mzrl.history,
assuming MzScheme exits normally.
Direct bindings for readline hackers
------------------------------------
The _readline.ss_ library provides two functions:
> (readline prompt-string) - prints the given prompt string and reads
an S-expression.
> (add-history s) - adds the given string to the readline history,
which is accessible to the user via the up-arrow key
Known Bugs
----------
Hitting ctl-C more than once tends to make either readline or MzScheme
crash (I'm not sure which one).
mflatt@cs.utah.edu
Note to self: pack with
(pack "readline.plt" "readline" '("collects/readline") '(("readline")))