From 27dfa57a5d644817d5ba0786d88ecde2f591bc58 Mon Sep 17 00:00:00 2001 From: Cormac Shannon Date: Fri, 29 Aug 2025 01:09:43 +0100 Subject: [PATCH] multiline prompt fix --- luash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luash b/luash index 2c0f9d2..f1f5a04 100755 --- a/luash +++ b/luash @@ -212,7 +212,7 @@ function start_repl() print("") while true do - local prompt = repl.buffer == "" and "luash> " or " ... " + local prompt = repl.buffer == "" and "luash> " or " >> " io.write(prompt) io.flush()