Re: Customising Guile's prompt

2024-12-11 Thread Matt Wette
On 12/11/24 7:33 AM, Ray Soto wrote: Hi! I've read the HTML manual and I have created a 'nice' prompt for my machines as follows: (use-modules ... (system repl common)) ... (repl-default-option-set! 'prompt (string-append (getlogin) "@" (gethostname) " > ")) What bothers me is that I ha

Customising Guile's prompt

2024-12-11 Thread Ray Soto
Hi! I've read the HTML manual and I have created a 'nice' prompt for my machines as follows: (use-modules ... (system repl common)) ... (repl-default-option-set! 'prompt (string-append (getlogin) "@" (gethostname) " > ")) What bothers me is that I have been unable to replicate the default p