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:
parent
0afca3d4f6
commit
4ce223e2f4
2
main.go
2
main.go
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user