1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

(Loading Readline Support, Readline Options):

Index entries for readline functions.
This commit is contained in:
Kevin Ryde 2003-05-11 22:31:31 +00:00
parent a660f54585
commit 4b83d327ec

View file

@ -25,6 +25,7 @@ history entries.
The module is not loaded by default and so has to be loaded and The module is not loaded by default and so has to be loaded and
activated explicitly. This is done with two simple lines of code: activated explicitly. This is done with two simple lines of code:
@findex activate-readline
@lisp @lisp
(use-modules (ice-9 readline)) (use-modules (ice-9 readline))
(activate-readline) (activate-readline)
@ -70,6 +71,10 @@ better suit the user's needs. Configuration is done via the readline
module's options interface, in a similar way to the evaluator and module's options interface, in a similar way to the evaluator and
debugging options (@pxref{User level options interfaces}.) debugging options (@pxref{User level options interfaces}.)
@findex readline-options
@findex readline-enable
@findex readline-disable
@findex readline-set!
Here is the list of readline options generated by typing Here is the list of readline options generated by typing
@code{(readline-options 'full)} in Guile. You can also see the @code{(readline-options 'full)} in Guile. You can also see the
default values. default values.