mirror of https://github.com/Hilbis/Hilbish
fix: add user input to history instead of hilbish expanded (closes #103)
parent
738939e4c9
commit
853dfa369f
2
exec.go
2
exec.go
|
@ -245,7 +245,7 @@ func splitInput(input string) ([]string, string) {
|
|||
func cmdFinish(code uint8, cmdstr, oldInput string) {
|
||||
// if input has space at the beginning, dont put in history
|
||||
if !strings.HasPrefix(oldInput, " ") || interactive {
|
||||
handleHistory(cmdstr)
|
||||
handleHistory(strings.TrimSpace(oldInput))
|
||||
}
|
||||
util.SetField(l, hshMod, "exitCode", lua.LNumber(code), "Exit code of last exected command")
|
||||
hooks.Em.Emit("command.exit", code, cmdstr)
|
||||
|
|
Loading…
Reference in New Issue