2
2
spegling av https://github.com/Hilbis/Hilbish synced 2025-06-30 16:22:03 +00:00

Jämför commits

..

No commits in common. "4596159b8ffa61139f7e0f3d80e83d4593f819b6" and "38233ccda41d78390cd8d497fd37afb74f401f6d" have entirely different histories.

2 ändrade filer med 1 tillägg och 5 borttagningar

Visa fil

@ -184,10 +184,7 @@ input:
}
input = strings.TrimSpace(input)
if len(input) == 0 {
hooks.Em.Emit("command.exit", 0)
continue
}
if len(input) == 0 { continue }
if strings.HasSuffix(input, "\\") {
for {

1
rl.go
Visa fil

@ -22,7 +22,6 @@ func NewLineReader(prompt string) *LineReader {
}
func (lr *LineReader) Read() (string, error) {
hooks.Em.Emit("command.precmd", nil)
return readline.String(lr.Prompt)
}