ref: cd4ccb0f58e8c321cb0b0de01ac02ad252cf6ce0
parent: e93a019a1689d280d8ef5cdb9a19dd43f18a1ee3
author: penny <penny@limitedideas.org>
date: Mon Oct 20 12:54:51 EDT 2025
aseti
--- a/readline_plan9.go
+++ b/readline_plan9.go
@@ -39,10 +39,8 @@
fmt.Print(cfg.Prompt)
scanner := bufio.NewScanner(os.Stdin)
- // Scan for the next token (by default, a line)
scanner.Scan()
- // Get the text of the scanned line
input := scanner.Text()
return strings.TrimSpace(input), nil
}
--
⑨