mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-21 21:13:22 +00:00
Compare commits
4 Commits
38233ccda4
...
e4833bdba9
Author | SHA1 | Date | |
---|---|---|---|
|
e4833bdba9 | ||
|
63061e3a52 | ||
|
4596159b8f | ||
|
9eabe5323d |
@ -30,6 +30,6 @@ func (b *Bait) throw(name string, args ...interface{}) {
|
||||
b.Em.Emit(name, args...)
|
||||
}
|
||||
|
||||
func (b *Bait) catch(name string, catcher func(interface{})) {
|
||||
func (b *Bait) catch(name string, catcher func(...interface{})) {
|
||||
b.Em.On(name, catcher)
|
||||
}
|
||||
|
5
main.go
5
main.go
@ -184,7 +184,10 @@ input:
|
||||
}
|
||||
|
||||
input = strings.TrimSpace(input)
|
||||
if len(input) == 0 { continue }
|
||||
if len(input) == 0 {
|
||||
hooks.Em.Emit("command.exit", 0)
|
||||
continue
|
||||
}
|
||||
|
||||
if strings.HasSuffix(input, "\\") {
|
||||
for {
|
||||
|
1
rl.go
1
rl.go
@ -22,6 +22,7 @@ func NewLineReader(prompt string) *LineReader {
|
||||
}
|
||||
|
||||
func (lr *LineReader) Read() (string, error) {
|
||||
hooks.Em.Emit("command.precmd", nil)
|
||||
return readline.String(lr.Prompt)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user