Fu gangqiang <[email protected]> writes:
> Hi, all
> guile 1.9.14 default prompt is 'scheme @(guile-user)>' and value-history is
> #t,
> I can change them using commands ' ,o prompt "guile>"' and ',o value-history
> #f'
> but how to change them in ~/.guile file
According to the `Value History' section in the manual:
-- Scheme Procedure: disable-value-history!
Turn off value history, if it was on.
And, not documented (and not tested by me), but found by a bit of code
grepping: from (system repl common):
(define (repl-default-prompt-set! prompt)
(repl-default-option-set! 'prompt prompt))
Regards,
Neil