2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-04 04:33:23 +00:00

fix: dont make continued input spaced out

basically, if i had something like
> here i want to \
complete
it would return "here i want to  complete"
so now it doesnt anymore, if you want the space, do it manually
This commit is contained in:
sammy 2021-05-15 22:25:29 -04:00
parent 0afca3d4f6
commit 4ce223e2f4
No known key found for this signature in database
GPG Key ID: 50EE40A2809851F5

@ -174,7 +174,7 @@ func ContinuePrompt(prev string) (string, error) {
}
cont = strings.TrimSpace(cont)
return prev + " " + strings.TrimSuffix(cont, "\n"), nil
return prev + strings.TrimSuffix(cont, "\n"), nil
}
// This semi cursed function formats our prompt (obviously)