fix: use readline in continue prompt

pull/38/head
sammy 2021-04-23 23:44:22 -04:00
parent 935bed3dc6
commit 5d0fecf902
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5
1 changed files with 1 additions and 2 deletions

View File

@ -146,8 +146,7 @@ func main() {
}
func ContinuePrompt(prev string) (string, error) {
hl := hilbiline.New(multilinePrompt)
cont, err := hl.Read()
cont, err := readline.String(multilinePrompt)
if err != nil {
fmt.Println("")
return "", err